aboutsummaryrefslogtreecommitdiff
path: root/src/Basemenu.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/Basemenu.cc')
-rw-r--r--src/Basemenu.cc16
1 files changed, 1 insertions, 15 deletions
diff --git a/src/Basemenu.cc b/src/Basemenu.cc
index 71bc66d..cdb7ea2 100644
--- a/src/Basemenu.cc
+++ b/src/Basemenu.cc
@@ -22,7 +22,7 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: Basemenu.cc,v 1.16 2002/03/27 18:47:12 fluxgen Exp $ 25// $Id: Basemenu.cc,v 1.17 2002/04/03 23:08:19 fluxgen Exp $
26 26
27//use GNU extensions 27//use GNU extensions
28#ifndef _GNU_SOURCE 28#ifndef _GNU_SOURCE
@@ -224,20 +224,6 @@ int Basemenu::insert(const char *label, Basemenu *submenu, int pos) {
224 return menuitems.size(); 224 return menuitems.size();
225} 225}
226 226
227/*
228int Basemenu::insert(const char **ulabel, int pos, int function) {
229 assert(ulabel);
230 BasemenuItem *item = new BasemenuItem(*ulabel, function);
231 if (pos == -1) {
232 menuitems.push_back(item);
233 } else {
234 menuitems.insert(menuitems.begin() + pos, item);
235 }
236
237 return menuitems.size();
238}
239*/
240
241int Basemenu::remove(unsigned int index) { 227int Basemenu::remove(unsigned int index) {
242 if (index >= menuitems.size()) { 228 if (index >= menuitems.size()) {
243 #ifdef DEBUG 229 #ifdef DEBUG