diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /libkcal/confirmsavedialog.cpp | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkcal/confirmsavedialog.cpp')
-rw-r--r-- | libkcal/confirmsavedialog.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libkcal/confirmsavedialog.cpp b/libkcal/confirmsavedialog.cpp index ce2bb0f40..9b7f4d31d 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 ) { |