author | zautrix <zautrix> | 2005-01-29 07:48:23 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-01-29 07:48:23 (UTC) |
commit | ef1d97a243957180f5ffc3c3b055ffd8bf52e157 (patch) (unidiff) | |
tree | 57ebf97cfd0d324ffcecbfb0c9814745f73d54a5 /kaddressbook | |
parent | 0850ade22908615389800c6ee973f5906154d980 (diff) | |
download | kdepimpi-ef1d97a243957180f5ffc3c3b055ffd8bf52e157.zip kdepimpi-ef1d97a243957180f5ffc3c3b055ffd8bf52e157.tar.gz kdepimpi-ef1d97a243957180f5ffc3c3b055ffd8bf52e157.tar.bz2 |
many stribg fixes
-rw-r--r-- | kaddressbook/kabcore.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kaddressbook/kabcore.cpp b/kaddressbook/kabcore.cpp index e2e3a66..0def16e 100644 --- a/kaddressbook/kabcore.cpp +++ b/kaddressbook/kabcore.cpp | |||
@@ -1945,196 +1945,196 @@ void KABCore::initActions() | |||
1945 | mActionCopy = new KAction( i18n( "&Copy" ), "editcopy", CTRL + Key_C, this, | 1945 | mActionCopy = new KAction( i18n( "&Copy" ), "editcopy", CTRL + Key_C, this, |
1946 | SLOT( copyContacts() ), actionCollection(), | 1946 | SLOT( copyContacts() ), actionCollection(), |
1947 | "kaddressbook_copy" ); | 1947 | "kaddressbook_copy" ); |
1948 | mActionCut = new KAction( i18n( "Cu&t" ), "editcut", CTRL + Key_X, this, | 1948 | mActionCut = new KAction( i18n( "Cu&t" ), "editcut", CTRL + Key_X, this, |
1949 | SLOT( cutContacts() ), actionCollection(), | 1949 | SLOT( cutContacts() ), actionCollection(), |
1950 | "kaddressbook_cut" ); | 1950 | "kaddressbook_cut" ); |
1951 | mActionPaste = new KAction( i18n( "&Paste" ), "editpaste", CTRL + Key_V, this, | 1951 | mActionPaste = new KAction( i18n( "&Paste" ), "editpaste", CTRL + Key_V, this, |
1952 | SLOT( pasteContacts() ), actionCollection(), | 1952 | SLOT( pasteContacts() ), actionCollection(), |
1953 | "kaddressbook_paste" ); | 1953 | "kaddressbook_paste" ); |
1954 | mActionSelectAll = new KAction( i18n( "Select &All" ), CTRL + Key_A, this, | 1954 | mActionSelectAll = new KAction( i18n( "Select &All" ), CTRL + Key_A, this, |
1955 | SLOT( selectAllContacts() ), actionCollection(), | 1955 | SLOT( selectAllContacts() ), actionCollection(), |
1956 | "kaddressbook_select_all" ); | 1956 | "kaddressbook_select_all" ); |
1957 | mActionUndo = new KAction( i18n( "&Undo" ), "undo", CTRL + Key_Z, this, | 1957 | mActionUndo = new KAction( i18n( "&Undo" ), "undo", CTRL + Key_Z, this, |
1958 | SLOT( undo() ), actionCollection(), | 1958 | SLOT( undo() ), actionCollection(), |
1959 | "kaddressbook_undo" ); | 1959 | "kaddressbook_undo" ); |
1960 | mActionRedo = new KAction( i18n( "Re&do" ), "redo", CTRL + SHIFT + Key_Z, | 1960 | mActionRedo = new KAction( i18n( "Re&do" ), "redo", CTRL + SHIFT + Key_Z, |
1961 | this, SLOT( redo() ), actionCollection(), | 1961 | this, SLOT( redo() ), actionCollection(), |
1962 | "kaddressbook_redo" ); | 1962 | "kaddressbook_redo" ); |
1963 | } else { | 1963 | } else { |
1964 | mActionCopy = KStdAction::copy( this, SLOT( copyContacts() ), actionCollection() ); | 1964 | mActionCopy = KStdAction::copy( this, SLOT( copyContacts() ), actionCollection() ); |
1965 | mActionCut = KStdAction::cut( this, SLOT( cutContacts() ), actionCollection() ); | 1965 | mActionCut = KStdAction::cut( this, SLOT( cutContacts() ), actionCollection() ); |
1966 | mActionPaste = KStdAction::paste( this, SLOT( pasteContacts() ), actionCollection() ); | 1966 | mActionPaste = KStdAction::paste( this, SLOT( pasteContacts() ), actionCollection() ); |
1967 | mActionSelectAll = KStdAction::selectAll( this, SLOT( selectAllContacts() ), actionCollection() ); | 1967 | mActionSelectAll = KStdAction::selectAll( this, SLOT( selectAllContacts() ), actionCollection() ); |
1968 | mActionUndo = KStdAction::undo( this, SLOT( undo() ), actionCollection() ); | 1968 | mActionUndo = KStdAction::undo( this, SLOT( undo() ), actionCollection() ); |
1969 | mActionRedo = KStdAction::redo( this, SLOT( redo() ), actionCollection() ); | 1969 | mActionRedo = KStdAction::redo( this, SLOT( redo() ), actionCollection() ); |
1970 | } | 1970 | } |
1971 | 1971 | ||
1972 | mActionDelete = new KAction( i18n( "&Delete Contact" ), "editdelete", | 1972 | mActionDelete = new KAction( i18n( "&Delete Contact" ), "editdelete", |
1973 | Key_Delete, this, SLOT( deleteContacts() ), | 1973 | Key_Delete, this, SLOT( deleteContacts() ), |
1974 | actionCollection(), "edit_delete" ); | 1974 | actionCollection(), "edit_delete" ); |
1975 | 1975 | ||
1976 | mActionUndo->setEnabled( false ); | 1976 | mActionUndo->setEnabled( false ); |
1977 | mActionRedo->setEnabled( false ); | 1977 | mActionRedo->setEnabled( false ); |
1978 | 1978 | ||
1979 | // settings menu | 1979 | // settings menu |
1980 | #ifdef KAB_EMBEDDED | 1980 | #ifdef KAB_EMBEDDED |
1981 | //US special menuentry to configure the addressbook resources. On KDE | 1981 | //US special menuentry to configure the addressbook resources. On KDE |
1982 | // you do that through the control center !!! | 1982 | // you do that through the control center !!! |
1983 | mActionConfigResources = new KAction( i18n( "Configure &Resources..." ), "configure_resources", 0, this, | 1983 | mActionConfigResources = new KAction( i18n( "Configure &Resources..." ), "configure_resources", 0, this, |
1984 | SLOT( configureResources() ), actionCollection(), | 1984 | SLOT( configureResources() ), actionCollection(), |
1985 | "kaddressbook_configure_resources" ); | 1985 | "kaddressbook_configure_resources" ); |
1986 | #endif //KAB_EMBEDDED | 1986 | #endif //KAB_EMBEDDED |
1987 | 1987 | ||
1988 | if ( mIsPart ) { | 1988 | if ( mIsPart ) { |
1989 | mActionConfigKAddressbook = new KAction( i18n( "&Configure KAddressBook..." ), "configure", 0, this, | 1989 | mActionConfigKAddressbook = new KAction( i18n( "&Configure KAddressBook..." ), "configure", 0, this, |
1990 | SLOT( openConfigDialog() ), actionCollection(), | 1990 | SLOT( openConfigDialog() ), actionCollection(), |
1991 | "kaddressbook_configure" ); | 1991 | "kaddressbook_configure" ); |
1992 | 1992 | ||
1993 | //US not implemented yet | 1993 | //US not implemented yet |
1994 | //mActionConfigShortcuts = new KAction( i18n( "Configure S&hortcuts..." ), "configure_shortcuts", 0, | 1994 | //mActionConfigShortcuts = new KAction( i18n( "Configure S&hortcuts..." ), "configure_shortcuts", 0, |
1995 | // this, SLOT( configureKeyBindings() ), actionCollection(), | 1995 | // this, SLOT( configureKeyBindings() ), actionCollection(), |
1996 | // "kaddressbook_configure_shortcuts" ); | 1996 | // "kaddressbook_configure_shortcuts" ); |
1997 | #ifdef KAB_EMBEDDED | 1997 | #ifdef KAB_EMBEDDED |
1998 | mActionConfigureToolbars = KStdAction::configureToolbars( this, SLOT( mMainWindow->configureToolbars() ), actionCollection() ); | 1998 | mActionConfigureToolbars = KStdAction::configureToolbars( this, SLOT( mMainWindow->configureToolbars() ), actionCollection() ); |
1999 | mActionConfigureToolbars->setEnabled( false ); | 1999 | mActionConfigureToolbars->setEnabled( false ); |
2000 | #endif //KAB_EMBEDDED | 2000 | #endif //KAB_EMBEDDED |
2001 | 2001 | ||
2002 | } else { | 2002 | } else { |
2003 | mActionConfigKAddressbook = KStdAction::preferences( this, SLOT( openConfigDialog() ), actionCollection() ); | 2003 | mActionConfigKAddressbook = KStdAction::preferences( this, SLOT( openConfigDialog() ), actionCollection() ); |
2004 | 2004 | ||
2005 | //US not implemented yet | 2005 | //US not implemented yet |
2006 | //mActionKeyBindings = KStdAction::keyBindings( this, SLOT( configureKeyBindings() ), actionCollection() ); | 2006 | //mActionKeyBindings = KStdAction::keyBindings( this, SLOT( configureKeyBindings() ), actionCollection() ); |
2007 | } | 2007 | } |
2008 | 2008 | ||
2009 | mActionJumpBar = new KToggleAction( i18n( "Show Jump Bar" ), 0, 0, | 2009 | mActionJumpBar = new KToggleAction( i18n( "Show Jump Bar" ), 0, 0, |
2010 | actionCollection(), "options_show_jump_bar" ); | 2010 | actionCollection(), "options_show_jump_bar" ); |
2011 | connect( mActionJumpBar, SIGNAL( toggled( bool ) ), SLOT( setJumpButtonBar( bool ) ) ); | 2011 | connect( mActionJumpBar, SIGNAL( toggled( bool ) ), SLOT( setJumpButtonBar( bool ) ) ); |
2012 | 2012 | ||
2013 | mActionDetails = new KToggleAction( i18n( "Show Details" ), "listview", 0, | 2013 | mActionDetails = new KToggleAction( i18n( "Show Details" ), "listview", 0, |
2014 | actionCollection(), "options_show_details" ); | 2014 | actionCollection(), "options_show_details" ); |
2015 | connect( mActionDetails, SIGNAL( toggled( bool ) ), SLOT( setDetailsVisible( bool ) ) ); | 2015 | connect( mActionDetails, SIGNAL( toggled( bool ) ), SLOT( setDetailsVisible( bool ) ) ); |
2016 | 2016 | ||
2017 | 2017 | ||
2018 | mActionBR = new KToggleAction( i18n( "Beam receive enabled" ), "beam", 0, this, | 2018 | mActionBR = new KToggleAction( i18n( "Beam receive enabled" ), "beam", 0, this, |
2019 | SLOT( toggleBeamReceive() ), actionCollection(), | 2019 | SLOT( toggleBeamReceive() ), actionCollection(), |
2020 | "kaddressbook_beam_rec" ); | 2020 | "kaddressbook_beam_rec" ); |
2021 | 2021 | ||
2022 | 2022 | ||
2023 | // misc | 2023 | // misc |
2024 | // only enable LDAP lookup if we can handle the protocol | 2024 | // only enable LDAP lookup if we can handle the protocol |
2025 | #ifndef KAB_EMBEDDED | 2025 | #ifndef KAB_EMBEDDED |
2026 | if ( KProtocolInfo::isKnownProtocol( KURL( "ldap://localhost" ) ) ) { | 2026 | if ( KProtocolInfo::isKnownProtocol( KURL( "ldap://localhost" ) ) ) { |
2027 | new KAction( i18n( "&Lookup Addresses in Directory" ), "find", 0, | 2027 | new KAction( i18n( "&Lookup Addresses in Directory" ), "find", 0, |
2028 | this, SLOT( openLDAPDialog() ), actionCollection(), | 2028 | this, SLOT( openLDAPDialog() ), actionCollection(), |
2029 | "ldap_lookup" ); | 2029 | "ldap_lookup" ); |
2030 | } | 2030 | } |
2031 | #else //KAB_EMBEDDED | 2031 | #else //KAB_EMBEDDED |
2032 | //qDebug("KABCore::initActions() LDAP has to be implemented"); | 2032 | //qDebug("KABCore::initActions() LDAP has to be implemented"); |
2033 | #endif //KAB_EMBEDDED | 2033 | #endif //KAB_EMBEDDED |
2034 | 2034 | ||
2035 | 2035 | ||
2036 | mActionWhoAmI = new KAction( i18n( "Set Who Am I" ), "personal", 0, this, | 2036 | mActionWhoAmI = new KAction( i18n( "Set Who Am I" ), "personal", 0, this, |
2037 | SLOT( setWhoAmI() ), actionCollection(), | 2037 | SLOT( setWhoAmI() ), actionCollection(), |
2038 | "set_personal" ); | 2038 | "set_personal" ); |
2039 | 2039 | ||
2040 | 2040 | ||
2041 | mActionCategories = new KAction( i18n( "Set Categories" ), 0, this, | 2041 | mActionCategories = new KAction( i18n( "Set Categories for Contacts..." ), 0, this, |
2042 | SLOT( setCategories() ), actionCollection(), | 2042 | SLOT( setCategories() ), actionCollection(), |
2043 | "edit_set_categories" ); | 2043 | "edit_set_categories" ); |
2044 | mActionEditCategories = new KAction( i18n( "Edit Categories" ), 0, this, | 2044 | mActionEditCategories = new KAction( i18n( "Edit Category List..." ), 0, this, |
2045 | SLOT( editCategories() ), actionCollection(), | 2045 | SLOT( editCategories() ), actionCollection(), |
2046 | "edit__categories" ); | 2046 | "edit__categories" ); |
2047 | 2047 | ||
2048 | mActionRemoveVoice = new KAction( i18n( "Remove \"voice\"..." ), 0, this, | 2048 | mActionRemoveVoice = new KAction( i18n( "Remove \"voice\"..." ), 0, this, |
2049 | SLOT( removeVoice() ), actionCollection(), | 2049 | SLOT( removeVoice() ), actionCollection(), |
2050 | "remove_voice" ); | 2050 | "remove_voice" ); |
2051 | mActionSetFormattedName = new KAction( i18n( "Set formatted name..." ), 0, this, | 2051 | mActionSetFormattedName = new KAction( i18n( "Set formatted name..." ), 0, this, |
2052 | SLOT( setFormattedName() ), actionCollection(), | 2052 | SLOT( setFormattedName() ), actionCollection(), |
2053 | "set_formatted" ); | 2053 | "set_formatted" ); |
2054 | 2054 | ||
2055 | mActionManageCategories= new KAction( i18n( "Manage new categories..." ), 0, this, | 2055 | mActionManageCategories= new KAction( i18n( "Manage new categories..." ), 0, this, |
2056 | SLOT( manageCategories() ), actionCollection(), | 2056 | SLOT( manageCategories() ), actionCollection(), |
2057 | "remove_voice" ); | 2057 | "remove_voice" ); |
2058 | 2058 | ||
2059 | 2059 | ||
2060 | mActionImportOL = new KAction( i18n( "Import from Outlook..." ), 0, this, | 2060 | mActionImportOL = new KAction( i18n( "Import from Outlook..." ), 0, this, |
2061 | SLOT( importFromOL() ), actionCollection(), | 2061 | SLOT( importFromOL() ), actionCollection(), |
2062 | "import_OL" ); | 2062 | "import_OL" ); |
2063 | #ifdef KAB_EMBEDDED | 2063 | #ifdef KAB_EMBEDDED |
2064 | mActionLicence = new KAction( i18n( "Licence" ), 0, | 2064 | mActionLicence = new KAction( i18n( "Licence" ), 0, |
2065 | this, SLOT( showLicence() ), actionCollection(), | 2065 | this, SLOT( showLicence() ), actionCollection(), |
2066 | "licence_about_data" ); | 2066 | "licence_about_data" ); |
2067 | mActionFaq = new KAction( i18n( "Faq" ), 0, | 2067 | mActionFaq = new KAction( i18n( "Faq" ), 0, |
2068 | this, SLOT( faq() ), actionCollection(), | 2068 | this, SLOT( faq() ), actionCollection(), |
2069 | "faq_about_data" ); | 2069 | "faq_about_data" ); |
2070 | mActionWN = new KAction( i18n( "What's New?" ), 0, | 2070 | mActionWN = new KAction( i18n( "What's New?" ), 0, |
2071 | this, SLOT( whatsnew() ), actionCollection(), | 2071 | this, SLOT( whatsnew() ), actionCollection(), |
2072 | "wn" ); | 2072 | "wn" ); |
2073 | mActionSyncHowto = new KAction( i18n( "Sync HowTo" ), 0, | 2073 | mActionSyncHowto = new KAction( i18n( "Sync HowTo" ), 0, |
2074 | this, SLOT( synchowto() ), actionCollection(), | 2074 | this, SLOT( synchowto() ), actionCollection(), |
2075 | "sync" ); | 2075 | "sync" ); |
2076 | mActionKdeSyncHowto = new KAction( i18n( "Kde Sync HowTo" ), 0, | 2076 | mActionKdeSyncHowto = new KAction( i18n( "Kde Sync HowTo" ), 0, |
2077 | this, SLOT( kdesynchowto() ), actionCollection(), | 2077 | this, SLOT( kdesynchowto() ), actionCollection(), |
2078 | "kdesync" ); | 2078 | "kdesync" ); |
2079 | mActionMultiSyncHowto = new KAction( i18n( "Multi Sync HowTo" ), 0, | 2079 | mActionMultiSyncHowto = new KAction( i18n( "Multi Sync HowTo" ), 0, |
2080 | this, SLOT( multisynchowto() ), actionCollection(), | 2080 | this, SLOT( multisynchowto() ), actionCollection(), |
2081 | "multisync" ); | 2081 | "multisync" ); |
2082 | 2082 | ||
2083 | mActionAboutKAddressbook = new KAction( i18n( "&About KAddressBook" ), "kaddressbook2", 0, | 2083 | mActionAboutKAddressbook = new KAction( i18n( "&About KAddressBook" ), "kaddressbook2", 0, |
2084 | this, SLOT( createAboutData() ), actionCollection(), | 2084 | this, SLOT( createAboutData() ), actionCollection(), |
2085 | "kaddressbook_about_data" ); | 2085 | "kaddressbook_about_data" ); |
2086 | #endif //KAB_EMBEDDED | 2086 | #endif //KAB_EMBEDDED |
2087 | 2087 | ||
2088 | clipboardDataChanged(); | 2088 | clipboardDataChanged(); |
2089 | connect( UndoStack::instance(), SIGNAL( changed() ), SLOT( updateActionMenu() ) ); | 2089 | connect( UndoStack::instance(), SIGNAL( changed() ), SLOT( updateActionMenu() ) ); |
2090 | connect( RedoStack::instance(), SIGNAL( changed() ), SLOT( updateActionMenu() ) ); | 2090 | connect( RedoStack::instance(), SIGNAL( changed() ), SLOT( updateActionMenu() ) ); |
2091 | } | 2091 | } |
2092 | 2092 | ||
2093 | //US we need this function, to plug all actions into the correct menues. | 2093 | //US we need this function, to plug all actions into the correct menues. |
2094 | // KDE uses a XML format to plug the actions, but we work her without this overhead. | 2094 | // KDE uses a XML format to plug the actions, but we work her without this overhead. |
2095 | void KABCore::addActionsManually() | 2095 | void KABCore::addActionsManually() |
2096 | { | 2096 | { |
2097 | //US qDebug("KABCore::initActions(): mIsPart %i", mIsPart); | 2097 | //US qDebug("KABCore::initActions(): mIsPart %i", mIsPart); |
2098 | 2098 | ||
2099 | #ifdef KAB_EMBEDDED | 2099 | #ifdef KAB_EMBEDDED |
2100 | QPopupMenu *fileMenu = new QPopupMenu( this ); | 2100 | QPopupMenu *fileMenu = new QPopupMenu( this ); |
2101 | QPopupMenu *editMenu = new QPopupMenu( this ); | 2101 | QPopupMenu *editMenu = new QPopupMenu( this ); |
2102 | QPopupMenu *helpMenu = new QPopupMenu( this ); | 2102 | QPopupMenu *helpMenu = new QPopupMenu( this ); |
2103 | 2103 | ||
2104 | KToolBar* tb = mMainWindow->toolBar(); | 2104 | KToolBar* tb = mMainWindow->toolBar(); |
2105 | 2105 | ||
2106 | #ifndef DESKTOP_VERSION | 2106 | #ifndef DESKTOP_VERSION |
2107 | if ( KABPrefs::instance()->mFullMenuBarVisible ) { | 2107 | if ( KABPrefs::instance()->mFullMenuBarVisible ) { |
2108 | #endif | 2108 | #endif |
2109 | QMenuBar* mb = mMainWindow->menuBar(); | 2109 | QMenuBar* mb = mMainWindow->menuBar(); |
2110 | 2110 | ||
2111 | //US setup menubar. | 2111 | //US setup menubar. |
2112 | //Disable the following block if you do not want to have a menubar. | 2112 | //Disable the following block if you do not want to have a menubar. |
2113 | mb->insertItem( i18n("&File"), fileMenu ); | 2113 | mb->insertItem( i18n("&File"), fileMenu ); |
2114 | mb->insertItem( i18n("&Edit"), editMenu ); | 2114 | mb->insertItem( i18n("&Edit"), editMenu ); |
2115 | mb->insertItem( i18n("&View"), viewMenu ); | 2115 | mb->insertItem( i18n("&View"), viewMenu ); |
2116 | mb->insertItem( i18n("&Settings"), settingsMenu ); | 2116 | mb->insertItem( i18n("&Settings"), settingsMenu ); |
2117 | mb->insertItem( i18n("Synchronize"), syncMenu ); | 2117 | mb->insertItem( i18n("Synchronize"), syncMenu ); |
2118 | //mb->insertItem( i18n("&Change"), changeMenu ); | 2118 | //mb->insertItem( i18n("&Change"), changeMenu ); |
2119 | mb->insertItem( i18n("&Help"), helpMenu ); | 2119 | mb->insertItem( i18n("&Help"), helpMenu ); |
2120 | mIncSearchWidget = new IncSearchWidget( tb ); | 2120 | mIncSearchWidget = new IncSearchWidget( tb ); |
2121 | // tb->insertWidget(-1, 0, mIncSearchWidget); | 2121 | // tb->insertWidget(-1, 0, mIncSearchWidget); |
2122 | #ifndef DESKTOP_VERSION | 2122 | #ifndef DESKTOP_VERSION |
2123 | } else { | 2123 | } else { |
2124 | //US setup toolbar | 2124 | //US setup toolbar |
2125 | QPEMenuBar *menuBarTB = new QPEMenuBar( tb ); | 2125 | QPEMenuBar *menuBarTB = new QPEMenuBar( tb ); |
2126 | QPopupMenu *popupBarTB = new QPopupMenu( this ); | 2126 | QPopupMenu *popupBarTB = new QPopupMenu( this ); |
2127 | menuBarTB->insertItem( "ME", popupBarTB); | 2127 | menuBarTB->insertItem( "ME", popupBarTB); |
2128 | tb->insertWidget(-1, 0, menuBarTB); | 2128 | tb->insertWidget(-1, 0, menuBarTB); |
2129 | mIncSearchWidget = new IncSearchWidget( tb ); | 2129 | mIncSearchWidget = new IncSearchWidget( tb ); |
2130 | 2130 | ||
2131 | tb->enableMoving(false); | 2131 | tb->enableMoving(false); |
2132 | popupBarTB->insertItem( i18n("&File"), fileMenu ); | 2132 | popupBarTB->insertItem( i18n("&File"), fileMenu ); |
2133 | popupBarTB->insertItem( i18n("&Edit"), editMenu ); | 2133 | popupBarTB->insertItem( i18n("&Edit"), editMenu ); |
2134 | popupBarTB->insertItem( i18n("&View"), viewMenu ); | 2134 | popupBarTB->insertItem( i18n("&View"), viewMenu ); |
2135 | popupBarTB->insertItem( i18n("&Settings"), settingsMenu ); | 2135 | popupBarTB->insertItem( i18n("&Settings"), settingsMenu ); |
2136 | popupBarTB->insertItem( i18n("Synchronize"), syncMenu ); | 2136 | popupBarTB->insertItem( i18n("Synchronize"), syncMenu ); |
2137 | mViewManager->getFilterAction()->plug ( popupBarTB); | 2137 | mViewManager->getFilterAction()->plug ( popupBarTB); |
2138 | //popupBarTB->insertItem( i18n("&Change selected"), changeMenu ); | 2138 | //popupBarTB->insertItem( i18n("&Change selected"), changeMenu ); |
2139 | popupBarTB->insertItem( i18n("&Help"), helpMenu ); | 2139 | popupBarTB->insertItem( i18n("&Help"), helpMenu ); |
2140 | if (QApplication::desktop()->width() > 320 ) { | 2140 | if (QApplication::desktop()->width() > 320 ) { |