summaryrefslogtreecommitdiff
path: root/src/FbTk/IntMenuItem.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/IntMenuItem.hh
parent38ef6e515589af7841c577188eb23c5dbe5d11f3 (diff)
downloadfluxbox_lack-6c0739e8895c9b909e4d925f57c130b4db3e842e.zip
fluxbox_lack-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/IntMenuItem.hh')
-rw-r--r--src/FbTk/IntMenuItem.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/FbTk/IntMenuItem.hh b/src/FbTk/IntMenuItem.hh
index 4aade43..9d2d2ba 100644
--- a/src/FbTk/IntMenuItem.hh
+++ b/src/FbTk/IntMenuItem.hh
@@ -26,7 +26,7 @@
26 26
27namespace FbTk { 27namespace FbTk {
28 28
29class Accessor<class T>; 29template <typename T> class Accessor;
30 30
31/// Changes an resource integer value between min and max 31/// Changes an resource integer value between min and max
32class IntMenuItem: public FbTk::MenuItem { 32class IntMenuItem: public FbTk::MenuItem {