diff options
author | Mark Tiefenbruck <mark@fluxbox.org> | 2008-01-11 07:41:22 (GMT) |
---|---|---|
committer | Mark Tiefenbruck <mark@fluxbox.org> | 2008-01-11 07:41:22 (GMT) |
commit | 9f2f65a698c4cc71373a7fe9d73a0889e0d3487b (patch) | |
tree | 4ad67db771d73ea3c48f80a1244037fc9754edd2 /src/LayerMenu.hh | |
parent | 1f01d84c080d607a91eb417efcaf5e500b5f1d7e (diff) | |
download | fluxbox-9f2f65a698c4cc71373a7fe9d73a0889e0d3487b.zip fluxbox-9f2f65a698c4cc71373a7fe9d73a0889e0d3487b.tar.bz2 |
make FbTk::Command a template class, split parsing information out of ObjectRegistry
Diffstat (limited to 'src/LayerMenu.hh')
-rw-r--r-- | src/LayerMenu.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LayerMenu.hh b/src/LayerMenu.hh index 68b8dec..8de0eba 100644 --- a/src/LayerMenu.hh +++ b/src/LayerMenu.hh | |||
@@ -40,7 +40,7 @@ public: | |||
40 | class LayerMenuItem : public FbTk::MenuItem { | 40 | class LayerMenuItem : public FbTk::MenuItem { |
41 | public: | 41 | public: |
42 | LayerMenuItem(const FbTk::FbString &label, LayerObject *object, | 42 | LayerMenuItem(const FbTk::FbString &label, LayerObject *object, |
43 | int layernum, FbTk::RefCount<FbTk::Command> &cmd): | 43 | int layernum, FbTk::RefCount<FbTk::Command<void> > &cmd): |
44 | FbTk::MenuItem(label, cmd), m_object(object), m_layernum(layernum) {} | 44 | FbTk::MenuItem(label, cmd), m_object(object), m_layernum(layernum) {} |
45 | 45 | ||
46 | LayerMenuItem(const FbTk::FbString &label, LayerObject *object, | 46 | LayerMenuItem(const FbTk::FbString &label, LayerObject *object, |