summaryrefslogtreecommitdiffstats
path: root/libkcal/confirmsavedialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libkcal/confirmsavedialog.cpp')
-rw-r--r--libkcal/confirmsavedialog.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/libkcal/confirmsavedialog.cpp b/libkcal/confirmsavedialog.cpp
index ce2bb0f4..9b7f4d31 100644
--- a/libkcal/confirmsavedialog.cpp
+++ b/libkcal/confirmsavedialog.cpp
@@ -23,22 +23,22 @@
#include <klistview.h>
#include <klocale.h>
-#include <qlayout.h>
-#include <qframe.h>
-#include <qlabel.h>
+#include <tqlayout.h>
+#include <tqframe.h>
+#include <tqlabel.h>
using namespace KCal;
-ConfirmSaveDialog::ConfirmSaveDialog( const QString &destination,
- QWidget *parent, const char *name )
+ConfirmSaveDialog::ConfirmSaveDialog( const TQString &destination,
+ TQWidget *parent, const char *name )
: KDialogBase( parent, name, true, i18n("Confirm Save"), Ok | Cancel )
{
- QFrame *topFrame = makeMainWidget();
+ TQFrame *topFrame = makeMainWidget();
- QBoxLayout *topLayout = new QVBoxLayout( topFrame );
+ TQBoxLayout *topLayout = new TQVBoxLayout( topFrame );
topLayout->setSpacing( spacingHint() );
- QLabel *label = new QLabel(
+ TQLabel *label = new TQLabel(
i18n("You have requested to save the following objects to '%1':")
.arg( destination ), topFrame );
topLayout->addWidget( label );
@@ -52,7 +52,7 @@ ConfirmSaveDialog::ConfirmSaveDialog( const QString &destination,
}
void ConfirmSaveDialog::addIncidences( const Incidence::List &incidences,
- const QString &operation )
+ const TQString &operation )
{
Incidence::List::ConstIterator it;
for( it = incidences.begin(); it != incidences.end(); ++it ) {