-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hello,
as discussed on IRC here comes a little cleanup for the menus.
- - System Functions Menu: Removed items to More/Work/About/Last Info because
these are reached through the general info item.
- - Per-user-context menu: Completely removed sub-menu "Info". Instead "Info"
directly calls the info dialog. Always waiting for the submenu to appear was
quite annoying.
What's the opinion from the people on this list?
Should this get applied? IMO it's a little but very nice improvement/cleanup.
Your opinion is requested.
Jon? agreed?
Thanks,
Thomas
- --
Q: How many surrealists does it take to change a light bulb?
A: Two, one to hold the giraffe, and the other to fill the bathtub
with brightly colored machine tools.
[Surrealist jokes just aren't my cup of fur. Ed.]
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.1 (GNU/Linux)
iD8DBQE95qIt+83LmoKU5MARAqxjAJ44inNIP3ily2l1KzihLpW624q6AwCeJewe
Yk500S/IsytaX/+UVTQBBBU=
=HyE3
-----END PGP SIGNATURE-----
Index: licq/plugins/qt-gui/src/mainwin.cpp
===================================================================
RCS file: /cvsroot/licq/qt-gui/src/mainwin.cpp,v
retrieving revision 1.255
diff -u -3 -p -r1.255 mainwin.cpp
--- licq/plugins/qt-gui/src/mainwin.cpp 8 Nov 2002 00:59:11 -0000 1.255
+++ licq/plugins/qt-gui/src/mainwin.cpp 28 Nov 2002 22:59:41 -0000
@@ -3202,12 +3202,8 @@ void CMainWindow::initMenu()
mnuOwnerAdm = new QPopupMenu(NULL);
mnuOwnerAdm->insertItem(tr("&View System Messages"), OwnerMenuView);
mnuOwnerAdm->insertSeparator();
- mnuOwnerAdm->insertItem(pmInfo, tr("&General Info"), OwnerMenuGeneral);
- mnuOwnerAdm->insertItem(tr("&More Info"), OwnerMenuMore);
- mnuOwnerAdm->insertItem(tr("&Work Info"), OwnerMenuWork);
- mnuOwnerAdm->insertItem(tr("&About"), OwnerMenuAbout);
- mnuOwnerAdm->insertItem(pmHistory, tr("&History"), OwnerMenuHistory);
- mnuOwnerAdm->insertItem(tr("&Last"), OwnerMenuLast);
+ mnuOwnerAdm->insertItem(pmInfo, tr("&Info"), OwnerMenuGeneral);
+ mnuOwnerAdm->insertItem(pmHistory, tr("View &History"), OwnerMenuHistory);
mnuOwnerAdm->insertSeparator();
mnuOwnerAdm->insertItem(tr("&Security/Password Options"), OwnerMenuSecurity);
mnuOwnerAdm->insertItem(tr("&Random Chat Group"), OwnerMenuRandomChat);
@@ -3311,14 +3307,7 @@ void CMainWindow::initMenu()
mnuUser->insertItem(tr("Check Auto Response"), mnuUserCheckResponse);
mnuUser->insertItem(tr("Custom Auto Response..."), mnuUserCustomAutoResponse);
mnuUser->insertSeparator();
- QPopupMenu *m = new QPopupMenu(this);
- m->insertItem(tr("&General Info"), mnuUserGeneral);
- m->insertItem(tr("&More Info"), mnuUserMore);
- m->insertItem(tr("&Work Info"), mnuUserWork);
- m->insertItem(tr("&About"), mnuUserAbout);
- m->insertItem(tr("&Last"), mnuUserLast);
- connect (m, SIGNAL(activated(int)), this, SLOT(callUserFunction(int)));
- mnuUser->insertItem(pmInfo, tr("&Info"), m);
+ mnuUser->insertItem(pmInfo, tr("&Info"), mnuUserGeneral);
mnuUser->insertItem(pmHistory, tr("View &History"), mnuUserHistory);
mnuUser->insertItem(tr("Toggle &Floaty"), mnuUserFloaty);
mnuUser->insertItem(tr("Edit User Group"), mnuGroup);