-rw-r--r-- | library/menubutton.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/menubutton.cpp b/library/menubutton.cpp index c34383a..6b1fa2b 100644 --- a/library/menubutton.cpp +++ b/library/menubutton.cpp | |||
@@ -88,33 +88,33 @@ void MenuButton::clear() | |||
88 | a separator. | 88 | a separator. |
89 | */ | 89 | */ |
90 | void MenuButton::insertItems( const QStringList& items ) | 90 | void MenuButton::insertItems( const QStringList& items ) |
91 | { | 91 | { |
92 | QStringList::ConstIterator it=items.begin(); | 92 | QStringList::ConstIterator it=items.begin(); |
93 | for (; it!=items.end(); ++it) { | 93 | for (; it!=items.end(); ++it) { |
94 | if ( (*it) == "--" ) | 94 | if ( (*it) == "--" ) |
95 | insertSeparator(); | 95 | insertSeparator(); |
96 | else | 96 | else |
97 | insertItem(*it); | 97 | insertItem(*it); |
98 | } | 98 | } |
99 | } | 99 | } |
100 | 100 | ||
101 | /*! | 101 | /*! |
102 | Inserts an \a icon and \a text into the menu. | 102 | Inserts an \a icon and \a text into the menu. |
103 | */ | 103 | */ |
104 | void MenuButton::insertItem( const QIconSet& icon, const QString& text=QString::null ) | 104 | void MenuButton::insertItem( const QIconSet& icon, const QString& text ) |
105 | { | 105 | { |
106 | pop->insertItem(icon, text, nitems++); | 106 | pop->insertItem(icon, text, nitems++); |
107 | if ( nitems==1 ) select(0); | 107 | if ( nitems==1 ) select(0); |
108 | } | 108 | } |
109 | 109 | ||
110 | /*! | 110 | /*! |
111 | Inserts \a text into the menu. | 111 | Inserts \a text into the menu. |
112 | */ | 112 | */ |
113 | void MenuButton::insertItem( const QString& text ) | 113 | void MenuButton::insertItem( const QString& text ) |
114 | { | 114 | { |
115 | pop->insertItem(text, nitems++); | 115 | pop->insertItem(text, nitems++); |
116 | if ( nitems==1 ) select(0); | 116 | if ( nitems==1 ) select(0); |
117 | } | 117 | } |
118 | 118 | ||
119 | /*! | 119 | /*! |
120 | Inserts a visual separator into the menu. | 120 | Inserts a visual separator into the menu. |