--- src1/wmprog.cc	Sun Jan 25 14:39:51 2009
+++ src/wmprog.cc	Sat Jun 27 16:44:13 2009
@@ -754,103 +754,5 @@
         addSeparator();
     }
 
-#ifdef CONFIG_WINLIST
-    int const oldItemCount(itemCount());
-#endif
-
-    if (showPrograms) {
-        ObjectMenu *programs = new MenuFileMenu("programs", 0);
-        ///    if (programs->itemCount() > 0)
-        addSubmenu(_("Programs"), 0, programs);
-    }
-
-    if (showRun) {
-        if (runDlgCommand && runDlgCommand[0])
-            addItem(_("_Run..."), -2, "", actionRun);
-    }
-
-#ifdef CONFIG_WINLIST
-#ifdef CONFIG_WINMENU
-    if (itemCount() != oldItemCount) addSeparator();
-    if (showWindowList)
-        addItem(_("_Windows"), -2, actionWindowList, windowListMenu);
-#endif
-#endif
-
-    if (
-#ifndef LITE
-#ifdef CONFIG_TASKBAR
-        (!showTaskBar && showAbout) ||
-#endif
-        showHelp ||
-#endif
-        showSettingsMenu
-    )
-    addSeparator();
-
-#ifndef LITE
-#ifdef CONFIG_TASKBAR
-    if (!showTaskBar) {
-        if (showAbout)
-            addItem(_("_About"), -2, actionAbout, 0);
-    }
-#endif
-
-    if (showHelp) {
-        YStringArray args(3);
-        args.append(ICEHELPEXE);
-        args.append(ICEHELPIDX);
-        args.append(0);
-
-        DProgram *help =
-            DProgram::newProgram(_("_Help"), NULL, false, "browser.IceHelp",
-                                 ICEHELPEXE, args);
-
-        if (help) addObject(help);
-    }
-#endif
-
-    if (showSettingsMenu) {
-        YMenu *settings = new YMenu();
-
-        if (showFocusModeMenu) {
-            YMenu *focus = new YMenu();
-            YMenuItem *i = 0;
-
-            i = focus->addItem(_("_Click to focus"), -2, "", actionFocusClickToFocus);
-            if (focusMode == 1) {
-                i->setEnabled(false);
-                i->setChecked(true);
-            }
-            i = focus->addItem(_("_Sloppy mouse focus"), -2, "", actionFocusMouseSloppy);
-            if (focusMode == 2) {
-                i->setEnabled(false);
-                i->setChecked(true);
-            }
-            i = focus->addItem(_("Custo_m"), -2, "", actionFocusCustom);
-            if (focusMode == 0) {
-                i->setEnabled(false);
-                i->setChecked(true);
-            }
-
-            settings->addSubmenu(_("_Focus"), -2, focus);
-        }
-
-
-        if (showThemesMenu) {
-            YMenu *themes = new ThemesMenu();
-            if (themes)
-                settings->addSubmenu(_("_Themes"), -2, themes);
-        }
-        addSubmenu(_("Se_ttings"), -2, settings);
-    }
-
-    if (logoutMenu) {
-        addSeparator();
-        if (showLogoutSubMenu)
-            addItem(_("_Logout..."), -2, actionLogout, logoutMenu);
-        else
-            addItem(_("_Logout..."), -2, "", actionLogout);
-    }
 }
 #endif
