aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/BoolMenuItem.hh
diff options
context:
space:
mode:
authorMathias Gumz <akira at fluxbox dot org>2009-10-01 05:34:37 (GMT)
committerMathias Gumz <akira at fluxbox dot org>2009-10-01 05:34:37 (GMT)
commit6c0739e8895c9b909e4d925f57c130b4db3e842e (patch)
tree6662632afe285a7bcc048353e001735dc4f714ff /src/FbTk/BoolMenuItem.hh
parent38ef6e515589af7841c577188eb23c5dbe5d11f3 (diff)
downloadfluxbox-6c0739e8895c9b909e4d925f57c130b4db3e842e.zip
fluxbox-6c0739e8895c9b909e4d925f57c130b4db3e842e.tar.bz2
compile fix: using correct forward declaration for template classes
we got this 'Warning (Anachronism): Old syntax for explicit specialization or instantiation ignored.' with the solaris compiler
Diffstat (limited to 'src/FbTk/BoolMenuItem.hh')
-rw-r--r--src/FbTk/BoolMenuItem.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/FbTk/BoolMenuItem.hh b/src/FbTk/BoolMenuItem.hh
index 3e68cbd..3ab20ad 100644
--- a/src/FbTk/BoolMenuItem.hh
+++ b/src/FbTk/BoolMenuItem.hh
@@ -26,7 +26,7 @@
26 26
27namespace FbTk { 27namespace FbTk {
28 28
29class Accessor<class T>; 29template <typename> class Accessor;
30 30
31/// a bool menu item 31/// a bool menu item
32class BoolMenuItem: public FbTk::MenuItem { 32class BoolMenuItem: public FbTk::MenuItem {