author | zautrix <zautrix> | 2004-09-16 23:29:24 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-09-16 23:29:24 (UTC) |
commit | eebe4409884ccd4dedb7cb697a800f74b33eb292 (patch) (unidiff) | |
tree | cd0a235edcab08ee8512c738624dcebac9502749 /kmicromail/mainwindow.cpp | |
parent | af411746b1480e7b331ea7d163f39d2507cf7264 (diff) | |
download | kdepimpi-eebe4409884ccd4dedb7cb697a800f74b33eb292.zip kdepimpi-eebe4409884ccd4dedb7cb697a800f74b33eb292.tar.gz kdepimpi-eebe4409884ccd4dedb7cb697a800f74b33eb292.tar.bz2 |
Fixes in ompi
-rw-r--r-- | kmicromail/mainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kmicromail/mainwindow.cpp b/kmicromail/mainwindow.cpp index 2a67e39..ddded2a 100644 --- a/kmicromail/mainwindow.cpp +++ b/kmicromail/mainwindow.cpp | |||
@@ -13,49 +13,49 @@ | |||
13 | #include <qpe/qpeapplication.h> | 13 | #include <qpe/qpeapplication.h> |
14 | #endif | 14 | #endif |
15 | #include "defines.h" | 15 | #include "defines.h" |
16 | #include "mainwindow.h" | 16 | #include "mainwindow.h" |
17 | #include <KDGanttMinimizeSplitter.h> | 17 | #include <KDGanttMinimizeSplitter.h> |
18 | 18 | ||
19 | 19 | ||
20 | #include <kabc/stdaddressbook.h> | 20 | #include <kabc/stdaddressbook.h> |
21 | 21 | ||
22 | MainWindow::MainWindow( QWidget *parent, const char *name, WFlags flags ) | 22 | MainWindow::MainWindow( QWidget *parent, const char *name, WFlags flags ) |
23 | : QMainWindow( parent, name ) //, flags ) | 23 | : QMainWindow( parent, name ) //, flags ) |
24 | { | 24 | { |
25 | setCaption( tr( "KOpieMail/Pi" ) ); | 25 | setCaption( tr( "KOpieMail/Pi" ) ); |
26 | setToolBarsMovable( false ); | 26 | setToolBarsMovable( false ); |
27 | //KABC::StdAddressBook::self(); | 27 | //KABC::StdAddressBook::self(); |
28 | toolBar = new QToolBar( this ); | 28 | toolBar = new QToolBar( this ); |
29 | menuBar = new QPEMenuBar( toolBar ); | 29 | menuBar = new QPEMenuBar( toolBar ); |
30 | mailMenu = new QPopupMenu( menuBar ); | 30 | mailMenu = new QPopupMenu( menuBar ); |
31 | menuBar->insertItem( tr( "Mail" ), mailMenu ); | 31 | menuBar->insertItem( tr( "Mail" ), mailMenu ); |
32 | settingsMenu = new QPopupMenu( menuBar ); | 32 | settingsMenu = new QPopupMenu( menuBar ); |
33 | menuBar->insertItem( tr( "Settings" ), settingsMenu ); | 33 | menuBar->insertItem( tr( "Settings" ), settingsMenu ); |
34 | 34 | ||
35 | addToolBar( toolBar ); | 35 | addToolBar( toolBar ); |
36 | toolBar->setHorizontalStretchable( true ); | 36 | toolBar->setHorizontalStretchable( true ); |
37 | QAction* getMail = new QAction( tr( "Get all new mails" ), SmallIcon("add"), | 37 | QAction* getMail = new QAction( tr( "Get all new mails" ), SmallIcon("enter"), |
38 | 0, 0, this ); | 38 | 0, 0, this ); |
39 | connect(getMail, SIGNAL( activated() ), | 39 | connect(getMail, SIGNAL( activated() ), |
40 | SLOT( slotGetAllMail() ) ); | 40 | SLOT( slotGetAllMail() ) ); |
41 | getMail->addTo( mailMenu ); | 41 | getMail->addTo( mailMenu ); |
42 | 42 | ||
43 | getMail = new QAction( tr( "Get new messages" ), SmallIcon("add"), | 43 | getMail = new QAction( tr( "Get new messages" ), SmallIcon("add"), |
44 | 0, 0, this ); | 44 | 0, 0, this ); |
45 | getMail->addTo( toolBar ); | 45 | getMail->addTo( toolBar ); |
46 | getMail->addTo( mailMenu ); | 46 | getMail->addTo( mailMenu ); |
47 | connect(getMail, SIGNAL( activated() ), | 47 | connect(getMail, SIGNAL( activated() ), |
48 | SLOT( slotGetMail() ) ); | 48 | SLOT( slotGetMail() ) ); |
49 | 49 | ||
50 | composeMail = new QAction( tr( "Compose new mail" ), SmallIcon("composemail"), | 50 | composeMail = new QAction( tr( "Compose new mail" ), SmallIcon("composemail"), |
51 | 0, 0, this ); | 51 | 0, 0, this ); |
52 | composeMail->addTo( toolBar ); | 52 | composeMail->addTo( toolBar ); |
53 | composeMail->addTo( mailMenu ); | 53 | composeMail->addTo( mailMenu ); |
54 | 54 | ||
55 | sendQueued = new QAction( tr( "Send queued mails" ), SmallIcon("sendqueued") , | 55 | sendQueued = new QAction( tr( "Send queued mails" ), SmallIcon("sendqueued") , |
56 | 0, 0, this ); | 56 | 0, 0, this ); |
57 | sendQueued->addTo( toolBar ); | 57 | sendQueued->addTo( toolBar ); |
58 | sendQueued->addTo( mailMenu ); | 58 | sendQueued->addTo( mailMenu ); |
59 | 59 | ||
60 | /* | 60 | /* |
61 | syncFolders = new QAction( tr( "Sync mailfolders" ), ICON_SYNC, | 61 | syncFolders = new QAction( tr( "Sync mailfolders" ), ICON_SYNC, |