summaryrefslogtreecommitdiffstats
path: root/khexedit
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-07-12 18:58:15 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-07-12 18:58:15 +0900
commita4e89f2b45c154949c07fab788df9f14aa0f25e8 (patch)
treef4e030f262633f2b97dd00ba4d2a1bd6cf7e1028 /khexedit
parent1691a30e333c87cb9afd06a0e967dbd9aef38260 (diff)
downloadtdeutils-a4e89f2b45c154949c07fab788df9f14aa0f25e8.tar.gz
tdeutils-a4e89f2b45c154949c07fab788df9f14aa0f25e8.zip
Use TDESimpleConfig
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'khexedit')
-rw-r--r--khexedit/exportdialog.cpp2
-rw-r--r--khexedit/exportdialog.h4
-rw-r--r--khexedit/printdialogpage.cpp2
-rw-r--r--khexedit/printdialogpage.h4
4 files changed, 6 insertions, 6 deletions
diff --git a/khexedit/exportdialog.cpp b/khexedit/exportdialog.cpp
index b2ac808..df95f5f 100644
--- a/khexedit/exportdialog.cpp
+++ b/khexedit/exportdialog.cpp
@@ -71,7 +71,7 @@ void CExportDialog::readConfiguration( void )
{
if( mConfig != 0 ) { return; }
- mConfig = new KSimpleConfig( TQString("hexexport") );
+ mConfig = new TDESimpleConfig( TQString("hexexport") );
if( mConfig == 0 ) { return; }
mConfig->setGroup( "Destination" );
diff --git a/khexedit/exportdialog.h b/khexedit/exportdialog.h
index c5fbfc5..7adcea3 100644
--- a/khexedit/exportdialog.h
+++ b/khexedit/exportdialog.h
@@ -30,7 +30,7 @@ class TQLabel;
class TQLineEdit;
class TQSpinBox;
class TQWidgetStack;
-class KSimpleConfig;
+class TDESimpleConfig;
#include <kdialogbase.h>
#include "hexbuffer.h"
@@ -127,7 +127,7 @@ class CExportDialog : public KDialogBase
SDestinationWidgets mDestination;
SHtmlWidgets mHtml;
SArrayWidgets mArray;
- KSimpleConfig *mConfig;
+ TDESimpleConfig *mConfig;
TQString mWorkDir;
};
diff --git a/khexedit/printdialogpage.cpp b/khexedit/printdialogpage.cpp
index 73efb45..ad58759 100644
--- a/khexedit/printdialogpage.cpp
+++ b/khexedit/printdialogpage.cpp
@@ -223,7 +223,7 @@ void LayoutDialogPage::readConfiguration( void )
{
if( mConfig != 0 ) { return; }
- mConfig = new KSimpleConfig( TQString("hexprinter") );
+ mConfig = new TDESimpleConfig( TQString("hexprinter") );
if( mConfig == 0 ) { return; }
mConfig->setGroup( "PageLayout" );
diff --git a/khexedit/printdialogpage.h b/khexedit/printdialogpage.h
index c08e31e..6eb4741 100644
--- a/khexedit/printdialogpage.h
+++ b/khexedit/printdialogpage.h
@@ -28,7 +28,7 @@ class TQLabel;
class TQSpinBox;
#include <tdeprint/kprintdialogpage.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
class LayoutDialogPage : public KPrintDialogPage
{
@@ -67,7 +67,7 @@ class LayoutDialogPage : public KPrintDialogPage
TQComboBox *footerCombo[4];
};
- KSimpleConfig *mConfig;
+ TDESimpleConfig *mConfig;
SLayoutWidgets mLayout;
};