summaryrefslogtreecommitdiffstats
path: root/src/widgets/qdialogbuttons.cpp
diff options
context:
space:
mode:
authorDarrell Anderson <[email protected]>2012-06-18 00:09:52 -0500
committerDarrell Anderson <[email protected]>2012-06-18 00:09:52 -0500
commitd1096751ddb25cdef23919c17389fc268c31edaf (patch)
treeb910be3588cb706defc00c31aefa850bb2312784 /src/widgets/qdialogbuttons.cpp
parentaf8fdcf1ca7bdbda6f0c1afecd8c2d8ffa23bebb (diff)
parent6dec101d43dcbd4195c47d54bd388db1a8d7230e (diff)
downloadtqt3-d1096751ddb25cdef23919c17389fc268c31edaf.tar.gz
tqt3-d1096751ddb25cdef23919c17389fc268c31edaf.zip
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tqt3
Diffstat (limited to 'src/widgets/qdialogbuttons.cpp')
-rw-r--r--src/widgets/qdialogbuttons.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/widgets/qdialogbuttons.cpp b/src/widgets/qdialogbuttons.cpp
index a14eec3a2..0762e6c79 100644
--- a/src/widgets/qdialogbuttons.cpp
+++ b/src/widgets/qdialogbuttons.cpp
@@ -56,14 +56,14 @@ struct TQDialogButtonsPrivate
TQMap<int, TQString> text;
TQMap<TQDialogButtons::Button, TQWidget *> buttons;
TQGuardedPtr<TQWidget> custom;
- Q_UINT32 enabled, visible;
+ TQ_UINT32 enabled, visible;
TQDialogButtons::Button def;
TQt::Orientation orient;
bool questionMode;
};
#ifndef QT_NO_DIALOG
-TQDialogButtons::TQDialogButtons(TQDialog *parent, bool autoConnect, Q_UINT32 buttons,
+TQDialogButtons::TQDialogButtons(TQDialog *parent, bool autoConnect, TQ_UINT32 buttons,
Orientation orient, const char *name ) : TQWidget(parent, name)
{
init(buttons, orient);
@@ -74,14 +74,14 @@ TQDialogButtons::TQDialogButtons(TQDialog *parent, bool autoConnect, Q_UINT32 bu
}
#endif // QT_NO_DIALOG
-TQDialogButtons::TQDialogButtons(TQWidget *parent, Q_UINT32 buttons,
+TQDialogButtons::TQDialogButtons(TQWidget *parent, TQ_UINT32 buttons,
Orientation orient, const char *name ) : TQWidget(parent, name)
{
init(buttons, orient);
}
void
-TQDialogButtons::init(Q_UINT32 buttons, Orientation orient)
+TQDialogButtons::init(TQ_UINT32 buttons, Orientation orient)
{
if(buttons == All) {
tqWarning("TQDialogButtons: cannot specify All by itself!");