-rw-r--r-- | libopie/pim/opimmainwindow.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libopie/pim/opimmainwindow.cpp b/libopie/pim/opimmainwindow.cpp index 7e57f3a..d1eec19 100644 --- a/libopie/pim/opimmainwindow.cpp +++ b/libopie/pim/opimmainwindow.cpp @@ -44,21 +44,20 @@ void OPimMainWindow::appMessage( const QCString& cmd, const QByteArray& array ) QCopEnvelope e(m_str, "created(int)" ); e << uid; }else if ( cmd == "remove(int)" ) { int uid; stream >> uid; bool rem = remove( uid ); QCopEnvelope e(m_str, "removed(bool)" ); e << rem; - }else if ( cmd == "beam(int,int)" ) { + }else if ( cmd == "beam(int)" ) { int uid, trans; stream >> uid; - stream >> trans; - beam( uid, trans ); + beam( uid); }else if ( cmd == "show(int)" ) { int uid; stream >> uid; show( uid ); }else if ( cmd == "edit(int)" ) { int uid; stream >> uid; edit( uid ); |