diff options
Diffstat (limited to 'buildtools/lib/widgets/removesubprojectdialog.cpp')
-rw-r--r-- | buildtools/lib/widgets/removesubprojectdialog.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/buildtools/lib/widgets/removesubprojectdialog.cpp b/buildtools/lib/widgets/removesubprojectdialog.cpp index aef16a0c..4a41ff88 100644 --- a/buildtools/lib/widgets/removesubprojectdialog.cpp +++ b/buildtools/lib/widgets/removesubprojectdialog.cpp @@ -16,11 +16,11 @@ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#include <qcheckbox.h> -#include <qlabel.h> +#include <tqcheckbox.h> +#include <tqlabel.h> #include "removesubprojectdialog.h" -RemoveSubprojectDialog::RemoveSubprojectDialog(QString caption, QString question, QWidget* parent, const char* name, bool modal, WFlags fl) +RemoveSubprojectDialog::RemoveSubprojectDialog(TQString caption, TQString question, TQWidget* parent, const char* name, bool modal, WFlags fl) : RemoveSubprojectDlgBase(parent,name, modal,fl) { setCaption(caption); @@ -34,12 +34,12 @@ RemoveSubprojectDialog::~RemoveSubprojectDialog() /*$SPECIALIZATION$*/ void RemoveSubprojectDialog::reject() { - QDialog::reject(); + TQDialog::reject(); } void RemoveSubprojectDialog::accept() { - QDialog::accept(); + TQDialog::accept(); } bool RemoveSubprojectDialog::removeFromDisk( ) |