summaryrefslogtreecommitdiffstats
path: root/khexedit
diff options
context:
space:
mode:
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;
};