summaryrefslogtreecommitdiff
path: root/library/menubutton.cpp
Unidiff
Diffstat (limited to 'library/menubutton.cpp') (more/less context) (show whitespace changes)
-rw-r--r--library/menubutton.cpp2
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
@@ -92,25 +92,25 @@ void MenuButton::insertItems( const QStringList& items )
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*/
104void MenuButton::insertItem( const QIconSet& icon, const QString& text=QString::null ) 104void 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*/
113void MenuButton::insertItem( const QString& text ) 113void 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);