diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Window.cc | 9 | ||||
-rw-r--r-- | src/Window.hh | 7 |
2 files changed, 9 insertions, 7 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 | |||
diff --git a/src/Window.hh b/src/Window.hh index 4a8065e..16e606d 100644 --- a/src/Window.hh +++ b/src/Window.hh | |||
@@ -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.hh,v 1.60 2003/04/20 15:11:48 rathnor Exp $ | 25 | // $Id: Window.hh,v 1.61 2003/04/25 11:27:13 rathnor Exp $ |
26 | 26 | ||
27 | #ifndef WINDOW_HH | 27 | #ifndef WINDOW_HH |
28 | #define WINDOW_HH | 28 | #define WINDOW_HH |
@@ -422,10 +422,5 @@ private: | |||
422 | 422 | ||
423 | }; | 423 | }; |
424 | 424 | ||
425 | template <> | ||
426 | void LayerMenuItem<FluxboxWindow>::click(int button, int time) { | ||
427 | m_object->moveToLayer(m_layernum); | ||
428 | } | ||
429 | |||
430 | 425 | ||
431 | #endif // WINDOW_HH | 426 | #endif // WINDOW_HH |