summaryrefslogtreecommitdiffabout
authorzautrix <zautrix>2004-10-06 08:41:05 (UTC)
committer zautrix <zautrix>2004-10-06 08:41:05 (UTC)
commit641d3327a51405f7ed995bb5c58d0207de7b5ca2 (patch) (side-by-side diff)
tree97526f04afd9d3df6244a64bb2e7f91a1c72d6ae
parent8e5089d2f2011e38d811ae0fc6b6d4edaeaf89b8 (diff)
downloadkdepimpi-641d3327a51405f7ed995bb5c58d0207de7b5ca2.zip
kdepimpi-641d3327a51405f7ed995bb5c58d0207de7b5ca2.tar.gz
kdepimpi-641d3327a51405f7ed995bb5c58d0207de7b5ca2.tar.bz2
fixes in export phone dialog
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--korganizer/mainwindow.cpp15
1 files changed, 11 insertions, 4 deletions
diff --git a/korganizer/mainwindow.cpp b/korganizer/mainwindow.cpp
index ef73a78..6a9a2f1 100644
--- a/korganizer/mainwindow.cpp
+++ b/korganizer/mainwindow.cpp
@@ -81,4 +81,5 @@ class KOex2phonePrefs : public QDialog
lay->setMargin( 3 );
-
- lay->addWidget(new QLabel( i18n("Please read phone sync howto to\nknow more about the connection settings."), this ) );
+ QLabel *lab;
+ lay->addWidget(lab = new QLabel( i18n("Please read Help-Sync Howto\nto know what settings to use."), this ) );
+ lab->setAlignment (AlignHCenter );
QHBox* temphb;
@@ -104,3 +105,5 @@ class KOex2phonePrefs : public QDialog
lay->addWidget( temphb );
- QPushButton * ok = new QPushButton( i18n("Export!"), this );
+ lay->addWidget(lab = new QLabel( i18n("NOTE: This will remove all old\n todo/calendar data on phone!"), this ) );
+ lab->setAlignment (AlignHCenter );
+ QPushButton * ok = new QPushButton( i18n("Export to mobile phone!"), this );
lay->addWidget( ok );
@@ -110,3 +113,3 @@ class KOex2phonePrefs : public QDialog
connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) );
- resize( 220, 220 );
+ resize( 220, 240 );
@@ -1159,2 +1162,6 @@ void MainWindow::exportToPhone( int mode )
ex2phone.mPhoneModel->setText( KOPrefs::instance()->mEx2PhoneModel );
+ if ( mode == 1 )
+ ex2phone.setCaption(i18n("Export complete calendar"));
+ if ( mode == 2 )
+ ex2phone.setCaption(i18n("Export filtered calendar"));