summaryrefslogtreecommitdiffstats
path: root/lilo-config/kde/InputBox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lilo-config/kde/InputBox.cpp')
-rw-r--r--lilo-config/kde/InputBox.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/lilo-config/kde/InputBox.cpp b/lilo-config/kde/InputBox.cpp
index a338c20..3a707cf 100644
--- a/lilo-config/kde/InputBox.cpp
+++ b/lilo-config/kde/InputBox.cpp
@@ -27,17 +27,17 @@
** Bug reports and questions can be sent to kde-devel@kde.org
*/
#include "InputBox.moc"
-#include <qvbox.h>
-#include <qwhatsthis.h>
+#include <tqvbox.h>
+#include <tqwhatsthis.h>
#include <ui.h>
-InputBox::InputBox(entries e, QWidget *parent, const char *name, bool hasCancel, WFlags f)
- : KDialogBase(parent, name, true, QString::null, hasCancel ? Ok | Cancel : Ok, Ok, true )
+InputBox::InputBox(entries e, TQWidget *parent, const char *name, bool hasCancel, WFlags f)
+ : KDialogBase(parent, name, true, TQString::null, hasCancel ? Ok | Cancel : Ok, Ok, true )
{
- QVBox *page = makeVBoxMainWidget();
+ TQVBox *page = makeVBoxMainWidget();
for(entries::iterator it=e.begin(); it!=e.end(); it++) {
EditWidget *ed=new EditWidget((*it).label, (*it).dflt, (*it).isFile, page);
- QWhatsThis::add(ed, (*it).help);
+ TQWhatsThis::add(ed, (*it).help);
edit.insert(edit.end(), ed);
}
}