diff options
author | Mathias Gumz <akira at fluxbox dot org> | 2009-10-01 05:34:37 (GMT) |
---|---|---|
committer | Mathias Gumz <akira at fluxbox dot org> | 2009-10-01 05:34:37 (GMT) |
commit | 6c0739e8895c9b909e4d925f57c130b4db3e842e (patch) | |
tree | 6662632afe285a7bcc048353e001735dc4f714ff /src/FbTk/IntMenuItem.hh | |
parent | 38ef6e515589af7841c577188eb23c5dbe5d11f3 (diff) | |
download | fluxbox-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/IntMenuItem.hh')
-rw-r--r-- | src/FbTk/IntMenuItem.hh | 2 |
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 | ||
27 | namespace FbTk { | 27 | namespace FbTk { |
28 | 28 | ||
29 | class Accessor<class T>; | 29 | template <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 |
32 | class IntMenuItem: public FbTk::MenuItem { | 32 | class IntMenuItem: public FbTk::MenuItem { |