author | zecke <zecke> | 2003-02-22 19:02:06 (UTC) |
---|---|---|
committer | zecke <zecke> | 2003-02-22 19:02:06 (UTC) |
commit | 00c146960fa7fd05dc56fac2a24b3d7968a4a772 (patch) (side-by-side diff) | |
tree | 11d7fd4630cce7422448c31bd26034718d90656e | |
parent | 7b04887e382227c80c8985495f01dad2b1890719 (diff) | |
download | opie-00c146960fa7fd05dc56fac2a24b3d7968a4a772.zip opie-00c146960fa7fd05dc56fac2a24b3d7968a4a772.tar.gz opie-00c146960fa7fd05dc56fac2a24b3d7968a4a772.tar.bz2 |
shutup todolist while running
remove the transport thingie..
-rw-r--r-- | core/pim/todo/main.cpp | 2 | ||||
-rw-r--r-- | core/pim/todo/mainwindow.cpp | 2 | ||||
-rw-r--r-- | core/pim/todo/mainwindow.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/core/pim/todo/main.cpp b/core/pim/todo/main.cpp index aeae794..58ed45c 100644 --- a/core/pim/todo/main.cpp +++ b/core/pim/todo/main.cpp @@ -30,9 +30,9 @@ void myMessages( QtMsgType, const char* ) { } int main( int argc, char **argv ) { -// qInstallMsgHandler( myMessages ); + qInstallMsgHandler( myMessages ); QPEApplication a( argc, argv ); QTime time; time.start(); diff --git a/core/pim/todo/mainwindow.cpp b/core/pim/todo/mainwindow.cpp index d328558..7810285 100644 --- a/core/pim/todo/mainwindow.cpp +++ b/core/pim/todo/mainwindow.cpp @@ -779,9 +779,9 @@ bool MainWindow::remove( int uid ) { if (m_syncing) return false; return m_todoMgr.remove( uid ); } -void MainWindow::beam( int uid, int ) { +void MainWindow::beam( int uid) { ::unlink( beamfile ); OTodo todo = event( uid ); OTodoAccessVCal* cal = new OTodoAccessVCal(QString::fromLatin1(beamfile) ); OTodoAccess acc( cal ); diff --git a/core/pim/todo/mainwindow.h b/core/pim/todo/mainwindow.h index f880505..434e969 100644 --- a/core/pim/todo/mainwindow.h +++ b/core/pim/todo/mainwindow.h @@ -190,9 +190,9 @@ private slots: void flush(); void reload(); int create(); bool remove( int uid ); - void beam(int uid, int transport = IrDa ); + void beam(int uid); void show( int uid ); void edit( int uid ); void add( const OPimRecord& ); }; |