summaryrefslogtreecommitdiff
path: root/noncore
authorharlekin <harlekin>2003-12-14 02:24:35 (UTC)
committer harlekin <harlekin>2003-12-14 02:24:35 (UTC)
commit12ba6ab9606538628afc7f7015e115a0251d0389 (patch) (unidiff)
treea7c9da2ecd69320cf90a0db19399815e4aff5d12 /noncore
parent568f23df5f4d5b1835c3b89ad54eeb6fc53157e6 (diff)
downloadopie-12ba6ab9606538628afc7f7015e115a0251d0389.zip
opie-12ba6ab9606538628afc7f7015e115a0251d0389.tar.gz
opie-12ba6ab9606538628afc7f7015e115a0251d0389.tar.bz2
show account list by default
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/mail/mainwindow.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/noncore/net/mail/mainwindow.cpp b/noncore/net/mail/mainwindow.cpp
index e466d9b..cab1a66 100644
--- a/noncore/net/mail/mainwindow.cpp
+++ b/noncore/net/mail/mainwindow.cpp
@@ -53,6 +53,7 @@ MainWindow::MainWindow( QWidget *parent, const char *name, WFlags flags )
53 0, 0, this, 0, true ); 53 0, 0, this, 0, true );
54 showFolders->addTo( toolBar ); 54 showFolders->addTo( toolBar );
55 showFolders->addTo( mailMenu ); 55 showFolders->addTo( mailMenu );
56 showFolders->setOn( true );
56 connect(showFolders, SIGNAL( toggled( bool ) ), 57 connect(showFolders, SIGNAL( toggled( bool ) ),
57 SLOT( slotShowFolders( bool ) ) ); 58 SLOT( slotShowFolders( bool ) ) );
58 59
@@ -84,7 +85,7 @@ MainWindow::MainWindow( QWidget *parent, const char *name, WFlags flags )
84 folderView->header()->hide(); 85 folderView->header()->hide();
85 folderView->setRootIsDecorated( false ); 86 folderView->setRootIsDecorated( false );
86 folderView->addColumn( tr( "Mailbox" ) ); 87 folderView->addColumn( tr( "Mailbox" ) );
87 folderView->hide(); 88 //folderView->hide();
88 89
89 layout->addWidget( folderView ); 90 layout->addWidget( folderView );
90 91
@@ -108,6 +109,7 @@ MainWindow::MainWindow( QWidget *parent, const char *name, WFlags flags )
108 connect(folderView, SIGNAL(refreshMailview(QList<RecMail>*)),this,SLOT(refreshMailView(QList<RecMail>*))); 109 connect(folderView, SIGNAL(refreshMailview(QList<RecMail>*)),this,SLOT(refreshMailView(QList<RecMail>*)));
109 110
110 QTimer::singleShot( 1000, this, SLOT( slotAdjustColumns() ) ); 111 QTimer::singleShot( 1000, this, SLOT( slotAdjustColumns() ) );
112
111} 113}
112 114
113 115