diff options
author | rathnor <rathnor> | 2003-04-25 11:27:13 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2003-04-25 11:27:13 (GMT) |
commit | c318ce9f682e91dceafeb9e9a04421415ffc5404 (patch) | |
tree | e9be81e39148eaa5db4c54163d2dc3ad3ccd5fd9 /src/Window.cc | |
parent | 4b1343f4ae4ee9c7ffed63941881c6bac40a2809 (diff) | |
download | fluxbox-c318ce9f682e91dceafeb9e9a04421415ffc5404.zip fluxbox-c318ce9f682e91dceafeb9e9a04421415ffc5404.tar.bz2 |
small fix for gcc 3.3 compile bug (Simon)
Diffstat (limited to 'src/Window.cc')
-rw-r--r-- | src/Window.cc | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/Window.cc b/src/Window.cc index 3cb6fcb..a6a5a6b 100644 --- a/src/Window.cc +++ b/src/Window.cc | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: Window.cc,v 1.146 2003/04/25 11:11:27 fluxgen Exp $ | 25 | // $Id: Window.cc,v 1.147 2003/04/25 11:27:11 rathnor Exp $ |
26 | 26 | ||
27 | #include "Window.hh" | 27 | #include "Window.hh" |
28 | 28 | ||
@@ -186,6 +186,12 @@ private: | |||
186 | 186 | ||
187 | }; | 187 | }; |
188 | 188 | ||
189 | template <> | ||
190 | void LayerMenuItem<FluxboxWindow>::click(int button, int time) { | ||
191 | m_object->moveToLayer(m_layernum); | ||
192 | } | ||
193 | |||
194 | |||
189 | FluxboxWindow::FluxboxWindow(WinClient &client, BScreen &scr, FbWinFrameTheme &tm, | 195 | FluxboxWindow::FluxboxWindow(WinClient &client, BScreen &scr, FbWinFrameTheme &tm, |
190 | FbTk::MenuTheme &menutheme, | 196 | FbTk::MenuTheme &menutheme, |
191 | FbTk::XLayer &layer): | 197 | FbTk::XLayer &layer): |
@@ -3181,3 +3187,4 @@ void FluxboxWindow::sendConfigureNotify() { | |||
3181 | screen.updateNetizenConfigNotify(&event); | 3187 | screen.updateNetizenConfigNotify(&event); |
3182 | } // end for | 3188 | } // end for |
3183 | } | 3189 | } |
3190 | |||