summaryrefslogtreecommitdiffstats
path: root/khexedit/dialog.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-23 01:42:07 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-23 01:42:07 +0000
commita2277b6bc715464e83882b90c2a058139b8a6b54 (patch)
treeab09b14014f59b4d8e2ddd12226aa0b22e4dfc5d /khexedit/dialog.h
parentd3f79e04b34bd1f70a458b81b28fc8799498c8dc (diff)
downloadtdeutils-a2277b6bc715464e83882b90c2a058139b8a6b54.tar.gz
tdeutils-a2277b6bc715464e83882b90c2a058139b8a6b54.zip
TQt4 port kdeutils
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1238125 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'khexedit/dialog.h')
-rw-r--r--khexedit/dialog.h25
1 files changed, 16 insertions, 9 deletions
diff --git a/khexedit/dialog.h b/khexedit/dialog.h
index 226825e..12456be 100644
--- a/khexedit/dialog.h
+++ b/khexedit/dialog.h
@@ -64,9 +64,10 @@ const uint Find_Next = 7;
class CGotoDialog : public KDialogBase
{
Q_OBJECT
+ TQ_OBJECT
public:
- CGotoDialog( TQWidget *parent, const char *name = 0, bool modal = false );
+ CGotoDialog( TQWidget *tqparent, const char *name = 0, bool modal = false );
~CGotoDialog( void );
protected:
@@ -90,6 +91,7 @@ class CGotoDialog : public KDialogBase
class CFindDialog : public KDialogBase
{
Q_OBJECT
+ TQ_OBJECT
public:
enum EOperation
@@ -100,7 +102,7 @@ class CFindDialog : public KDialogBase
};
public:
- CFindDialog( TQWidget *parent=0, const char *name=0, bool modal=false );
+ CFindDialog( TQWidget *tqparent=0, const char *name=0, bool modal=false );
~CFindDialog( void );
bool isEmpty( void );
@@ -137,9 +139,10 @@ class CFindDialog : public KDialogBase
class CFindNavigatorDialog : public KDialogBase
{
Q_OBJECT
+ TQ_OBJECT
public:
- CFindNavigatorDialog( TQWidget *parent=0, const char *name=0,
+ CFindNavigatorDialog( TQWidget *tqparent=0, const char *name=0,
bool modal=false );
~CFindNavigatorDialog( void );
void defineData( SSearchControl &sc );
@@ -166,9 +169,10 @@ class CFindNavigatorDialog : public KDialogBase
class CReplaceDialog : public KDialogBase
{
Q_OBJECT
+ TQ_OBJECT
public:
- CReplaceDialog( TQWidget *parent=0, const char *name=0, bool modal=false );
+ CReplaceDialog( TQWidget *tqparent=0, const char *name=0, bool modal=false );
~CReplaceDialog( void );
protected:
@@ -209,9 +213,10 @@ class CReplaceDialog : public KDialogBase
class CReplacePromptDialog : public KDialogBase
{
Q_OBJECT
+ TQ_OBJECT
public:
- CReplacePromptDialog( TQWidget *parent=0, const char *name=0,
+ CReplacePromptDialog( TQWidget *tqparent=0, const char *name=0,
bool modal=false );
~CReplacePromptDialog( void );
void defineData( SSearchControl &sc );
@@ -238,6 +243,7 @@ class CReplacePromptDialog : public KDialogBase
class CFilterDialog : public KDialogBase
{
Q_OBJECT
+ TQ_OBJECT
public:
enum EStackMode
@@ -249,7 +255,7 @@ class CFilterDialog : public KDialogBase
};
public:
- CFilterDialog( TQWidget *parent=0, const char *name=0, bool modal=false );
+ CFilterDialog( TQWidget *tqparent=0, const char *name=0, bool modal=false );
~CFilterDialog( void );
protected:
@@ -297,9 +303,10 @@ class CFilterDialog : public KDialogBase
class CInsertDialog : public KDialogBase
{
Q_OBJECT
+ TQ_OBJECT
public:
- CInsertDialog( TQWidget *parent=0, const char *name=0, bool modal=false );
+ CInsertDialog( TQWidget *tqparent=0, const char *name=0, bool modal=false );
~CInsertDialog( void );
protected:
@@ -336,8 +343,8 @@ void centerDialogBottom( TQWidget *widget, TQWidget *centerParent );
void comboMatchText( TQComboBox *combo, const TQString &text );
bool stringToOffset( const TQString & text, uint &offset );
-void showEntryFailure( TQWidget *parent, const TQString &msg );
-bool verifyFileDestnation( TQWidget *parent, const TQString &title,
+void showEntryFailure( TQWidget *tqparent, const TQString &msg );
+bool verifyFileDestnation( TQWidget *tqparent, const TQString &title,
const TQString &path );