author | eilers <eilers> | 2003-05-09 13:41:06 (UTC) |
---|---|---|
committer | eilers <eilers> | 2003-05-09 13:41:06 (UTC) |
commit | ddadf9f70cbcd7c6b8addcc8c1f6ede0283f765d (patch) (side-by-side diff) | |
tree | 3471c2ecec1ec034fb2855da230f05fef5e7b3b1 | |
parent | 98196030da571da62ecb2fdd67e77a1e941d175a (diff) | |
download | opie-ddadf9f70cbcd7c6b8addcc8c1f6ede0283f765d.zip opie-ddadf9f70cbcd7c6b8addcc8c1f6ede0283f765d.tar.gz opie-ddadf9f70cbcd7c6b8addcc8c1f6ede0283f765d.tar.bz2 |
No it jumps into the front if show(int) is used.. Thanks tille !
-rw-r--r-- | core/pim/addressbook/addressbook.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/pim/addressbook/addressbook.cpp b/core/pim/addressbook/addressbook.cpp index 975911e..25c6f3a 100644 --- a/core/pim/addressbook/addressbook.cpp +++ b/core/pim/addressbook/addressbook.cpp @@ -703,12 +703,13 @@ void AddressbookWindow::appMessage(const QCString &msg, const QByteArray &data) // Reset category and show as card.. m_abView -> setShowByCategory( QString::null ); m_abView -> setCurrentUid( uid ); slotViewSwitched ( AbView::CardView ); + showMaximized(); qApp->exec(); } else if ( msg == "edit(int)" ) { QDataStream stream(data,IO_ReadOnly); int uid; stream >> uid; |