all repos — fluxbox @ c318ce9f682e91dceafeb9e9a04421415ffc5404

custom fork of the fluxbox windowmanager

small fix for gcc 3.3 compile bug (Simon)
rathnor rathnor
commit

c318ce9f682e91dceafeb9e9a04421415ffc5404

parent

4b1343f4ae4ee9c7ffed63941881c6bac40a2809

3 files changed, 11 insertions(+), 7 deletions(-)

jump to
M ChangeLogChangeLog

@@ -1,6 +1,8 @@

(Format: Year/Month/Day) Changes for 0.9.2: *03/04/25: + * Fix small gcc 3.3 build issue (Simon) + Window.hh/cc * Add UnderMousePlacement policy, plus minor positioning fix (Simon) -> Patch originally contributed by "Mike" (lgn@users.sf) Screen.hh Workspace.cc fluxbox.cc Window.cc
M src/Window.ccsrc/Window.cc

@@ -22,7 +22,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: Window.cc,v 1.146 2003/04/25 11:11:27 fluxgen Exp $ +// $Id: Window.cc,v 1.147 2003/04/25 11:27:11 rathnor Exp $ #include "Window.hh"

@@ -185,6 +185,12 @@ WinClient &m_client;

}; }; + +template <> +void LayerMenuItem<FluxboxWindow>::click(int button, int time) { + m_object->moveToLayer(m_layernum); +} + FluxboxWindow::FluxboxWindow(WinClient &client, BScreen &scr, FbWinFrameTheme &tm, FbTk::MenuTheme &menutheme,

@@ -3181,3 +3187,4 @@

screen.updateNetizenConfigNotify(&event); } // end for } +
M src/Window.hhsrc/Window.hh

@@ -22,7 +22,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: Window.hh,v 1.60 2003/04/20 15:11:48 rathnor Exp $ +// $Id: Window.hh,v 1.61 2003/04/25 11:27:13 rathnor Exp $ #ifndef WINDOW_HH #define WINDOW_HH

@@ -421,11 +421,6 @@

enum { F_NOINPUT = 0, F_PASSIVE, F_LOCALLYACTIVE, F_GLOBALLYACTIVE }; }; - -template <> -void LayerMenuItem<FluxboxWindow>::click(int button, int time) { - m_object->moveToLayer(m_layernum); -} #endif // WINDOW_HH