small fix for gcc 3.3 compile bug (Simon)
This commit is contained in:
parent
4b1343f4ae
commit
c318ce9f68
3 changed files with 11 additions and 7 deletions
|
@ -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
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
// 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"
|
||||
|
||||
|
@ -186,6 +186,12 @@ private:
|
|||
|
||||
};
|
||||
|
||||
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,
|
||||
FbTk::XLayer &layer):
|
||||
|
@ -3181,3 +3187,4 @@ void FluxboxWindow::sendConfigureNotify() {
|
|||
screen.updateNetizenConfigNotify(&event);
|
||||
} // end for
|
||||
}
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
// 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
|
||||
|
@ -422,10 +422,5 @@ private:
|
|||
|
||||
};
|
||||
|
||||
template <>
|
||||
void LayerMenuItem<FluxboxWindow>::click(int button, int time) {
|
||||
m_object->moveToLayer(m_layernum);
|
||||
}
|
||||
|
||||
|
||||
#endif // WINDOW_HH
|
||||
|
|
Loading…
Reference in a new issue