author | zautrix <zautrix> | 2004-10-29 23:21:45 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-10-29 23:21:45 (UTC) |
commit | 920a91e2248f805f39d5b1a65d9f0dde6060bf7c (patch) (unidiff) | |
tree | 5218069e54750a078490fd485d7b6aa7be302f44 | |
parent | da80b510e4643fa3f78cf3f97af108e87097583d (diff) | |
download | kdepimpi-920a91e2248f805f39d5b1a65d9f0dde6060bf7c.zip kdepimpi-920a91e2248f805f39d5b1a65d9f0dde6060bf7c.tar.gz kdepimpi-920a91e2248f805f39d5b1a65d9f0dde6060bf7c.tar.bz2 |
fix in parameter list of popup menu
-rw-r--r-- | pwmanager/pwmanager/pwm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pwmanager/pwmanager/pwm.cpp b/pwmanager/pwmanager/pwm.cpp index 9642a43..d9fbfc9 100644 --- a/pwmanager/pwmanager/pwm.cpp +++ b/pwmanager/pwmanager/pwm.cpp | |||
@@ -357,7 +357,7 @@ void PwM::initMenubar() | |||
357 | // "options" popup menu | 357 | // "options" popup menu |
358 | optionsPopup->insertItem(QIconSet(picons->loadIcon("configure", KIcon::Small)), | 358 | optionsPopup->insertItem(QIconSet(picons->loadIcon("configure", KIcon::Small)), |
359 | i18n("&Configure..."), this, | 359 | i18n("&Configure..."), this, |
360 | SLOT(config_slot()), | 360 | SLOT(config_slot()),0, |
361 | BUTTON_POPUP_OPTIONS_CONFIG); | 361 | BUTTON_POPUP_OPTIONS_CONFIG); |
362 | menuBar()->insertItem(i18n("&Options"), optionsPopup); | 362 | menuBar()->insertItem(i18n("&Options"), optionsPopup); |
363 | // "help" popup menu | 363 | // "help" popup menu |
@@ -366,7 +366,7 @@ void PwM::initMenubar() | |||
366 | #else | 366 | #else |
367 | optionsPopup->insertItem(QIconSet(picons->loadIcon("configure", KIcon::Small)), | 367 | optionsPopup->insertItem(QIconSet(picons->loadIcon("configure", KIcon::Small)), |
368 | i18n("C&ategories..."), this, | 368 | i18n("C&ategories..."), this, |
369 | SLOT(category_slot()), | 369 | SLOT(category_slot()),0, |
370 | BUTTON_POPUP_OPTIONS_CATEGORY); | 370 | BUTTON_POPUP_OPTIONS_CATEGORY); |
371 | 371 | ||
372 | 372 | ||