author | zautrix <zautrix> | 2005-09-19 00:01:34 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-09-19 00:01:34 (UTC) |
commit | d73247ed44cab687a0d94a96ea7b3cf604b80ba0 (patch) (side-by-side diff) | |
tree | 7e72ac8e0239163cfec8df67c0053e0cb3a8dd2f /korganizer/mainwindow.cpp | |
parent | 2d346e4052fd726e657daee4ac3f2bcc7103f5fb (diff) | |
download | kdepimpi-d73247ed44cab687a0d94a96ea7b3cf604b80ba0.zip kdepimpi-d73247ed44cab687a0d94a96ea7b3cf604b80ba0.tar.gz kdepimpi-d73247ed44cab687a0d94a96ea7b3cf604b80ba0.tar.bz2 |
wn
-rw-r--r-- | korganizer/mainwindow.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/korganizer/mainwindow.cpp b/korganizer/mainwindow.cpp index fb0b4ad..1776dcc 100644 --- a/korganizer/mainwindow.cpp +++ b/korganizer/mainwindow.cpp @@ -418,13 +418,12 @@ MainWindow::~MainWindow() } void MainWindow::loadDataAfterStart() { - qDebug("KO: Start loading files..." ); QTime neededSaveTime = QDateTime::currentDateTime().time(); mView->loadCalendars(); int msNeeded = neededSaveTime.msecsTo( QDateTime::currentDateTime().time() ); qDebug("KO: Calendar loading time: %d ms",msNeeded ); //QTimer::singleShot( 1000, mView, SLOT ( checkFiles() )); @@ -434,18 +433,16 @@ void MainWindow::loadDataAfterStart() connect(mView , SIGNAL( save() ), this, SLOT( save() ) ); processIncidenceSelection( 0 ); connect( mView, SIGNAL( incidenceSelected( Incidence * ) ), SLOT( processIncidenceSelection( Incidence * ) ) ); connect( mView, SIGNAL( modifiedChanged( bool ) ), SLOT( slotModifiedChanged( bool ) ) ); - #ifndef DESKTOP_VERSION connect(qApp, SIGNAL (appMessage ( const QCString &, const QByteArray & )), ExternalAppHandler::instance(), SLOT (appMessage ( const QCString &, const QByteArray & ))); connect( qApp, SIGNAL (appMessage ( const QCString &, const QByteArray & )), this, SLOT(recieve( const QCString&, const QByteArray& ))); disconnect( qApp, SIGNAL (appMessage ( const QCString &, const QByteArray & )), this, SLOT(receiveStart( const QCString&, const QByteArray& ))); - ((QPEApplication*) qApp)->showMainWidget( this ); if ( !mCStringMess.isEmpty() ) recieve( mCStringMess, mByteData ); #endif QTimer::singleShot( 1000, mView, SLOT ( checkFiles() )); } |