summaryrefslogtreecommitdiffstats
path: root/src/widgets/qdialogbuttons.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/widgets/qdialogbuttons.cpp')
-rw-r--r--src/widgets/qdialogbuttons.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/widgets/qdialogbuttons.cpp b/src/widgets/qdialogbuttons.cpp
index 4153fb59..c248d2e0 100644
--- a/src/widgets/qdialogbuttons.cpp
+++ b/src/widgets/qdialogbuttons.cpp
@@ -37,16 +37,16 @@
**********************************************************************/
#include "qdialogbuttons_p.h"
-#ifndef QT_NO_DIALOGBUTTONS
+#ifndef TQT_NO_DIALOGBUTTONS
#include <ntqapplication.h>
#include <ntqpushbutton.h>
#include <ntqguardedptr.h>
#include <ntqmap.h>
#include <ntqvariant.h>
-#ifndef QT_NO_DIALOG
+#ifndef TQT_NO_DIALOG
#include <ntqdialog.h>
-#endif // QT_NO_DIALOG
+#endif // TQT_NO_DIALOG
#include <ntqlayout.h>
#include <ntqstyle.h>
#include <ntqmap.h>
@@ -62,7 +62,7 @@ struct TQDialogButtonsPrivate
bool questionMode;
};
-#ifndef QT_NO_DIALOG
+#ifndef TQT_NO_DIALOG
TQDialogButtons::TQDialogButtons(TQDialog *parent, bool autoConnect, TQ_UINT32 buttons,
Orientation orient, const char *name ) : TQWidget(parent, name)
{
@@ -72,7 +72,7 @@ TQDialogButtons::TQDialogButtons(TQDialog *parent, bool autoConnect, TQ_UINT32 b
TQObject::connect(this, SIGNAL(rejectClicked()), parent, SLOT(reject()));
}
}
-#endif // QT_NO_DIALOG
+#endif // TQT_NO_DIALOG
TQDialogButtons::TQDialogButtons(TQWidget *parent, TQ_UINT32 buttons,
Orientation orient, const char *name ) : TQWidget(parent, name)
@@ -183,12 +183,12 @@ TQDialogButtons::setDefaultButton(Button button)
return;
}
if(d->def != button) {
-#ifndef QT_NO_PROPERTIES
+#ifndef TQT_NO_PROPERTIES
if(d->buttons.contains(d->def))
d->buttons[d->def]->setProperty("default", TQVariant(FALSE,0));
#endif
d->def = button;
-#ifndef QT_NO_PROPERTIES
+#ifndef TQT_NO_PROPERTIES
if(d->buttons.contains(d->def))
d->buttons[d->def]->setProperty("default", TQVariant(FALSE,0));
#endif
@@ -205,7 +205,7 @@ void
TQDialogButtons::setButtonText(Button button, const TQString &str)
{
d->text[button] = str;
-#ifndef QT_NO_PROPERTIES
+#ifndef TQT_NO_PROPERTIES
if(d->buttons.contains(button))
d->buttons[button]->setProperty("text", TQVariant(str));
#endif
@@ -412,7 +412,7 @@ TQDialogButtons::layoutButtons()
if(w) {
if(b == d->def) {
w->setFocus();
-#ifndef QT_NO_PROPERTIES
+#ifndef TQT_NO_PROPERTIES
w->setProperty("default", TQVariant(TRUE,0));
#endif
}