aboutsummaryrefslogtreecommitdiff
path: root/src/MenuCreator.hh
diff options
context:
space:
mode:
authorMark Tiefenbruck <mark@fluxbox.org>2008-05-02 10:44:27 (GMT)
committerMark Tiefenbruck <mark@fluxbox.org>2008-05-02 10:44:27 (GMT)
commitd7afd7b39e8e539b873ece690dd1fae76296d09c (patch)
tree2b00bac9e2b8c9d8eba9de9c60b0d5d908e5fd30 /src/MenuCreator.hh
parent50024d32bc40541f128d80139e58494663f955b4 (diff)
downloadfluxbox-d7afd7b39e8e539b873ece690dd1fae76296d09c.zip
fluxbox-d7afd7b39e8e539b873ece690dd1fae76296d09c.tar.bz2
remove some unnecessary arguments
Diffstat (limited to 'src/MenuCreator.hh')
-rw-r--r--src/MenuCreator.hh9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/MenuCreator.hh b/src/MenuCreator.hh
index c5d85ad..4494dc7 100644
--- a/src/MenuCreator.hh
+++ b/src/MenuCreator.hh
@@ -36,13 +36,10 @@ class FluxboxWindow;
36class MenuCreator { 36class MenuCreator {
37public: 37public:
38 static FbTk::Menu *createMenu(const std::string &label, int screen_num); 38 static FbTk::Menu *createMenu(const std::string &label, int screen_num);
39 static FbTk::Menu *createFromFile(const std::string &filename, int screen_num, 39 static FbTk::Menu *createFromFile(const std::string &filename, int screen_num);
40 bool require_begin);
41 static FbTk::Menu *createMenuType(const std::string &label, int screen_num); 40 static FbTk::Menu *createMenuType(const std::string &label, int screen_num);
42 static bool createFromFile(const std::string &filename, FbTk::Menu &inject_into, 41 static bool createFromFile(const std::string &filename, FbTk::Menu &inject_into);
43 bool require_begin); 42 static bool createWindowMenuFromFile(const std::string &filename, FbTk::Menu &inject_into);
44 static bool createWindowMenuFromFile(const std::string &filename, FbTk::Menu &inject_into,
45 bool require_begin);
46 static bool createWindowMenuItem(const std::string &type, const std::string &label, 43 static bool createWindowMenuItem(const std::string &type, const std::string &label,
47 FbTk::Menu &inject_into); 44 FbTk::Menu &inject_into);
48 45