diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-02-14 16:36:30 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-02-14 16:36:30 +0000 |
commit | 8279be4155b8b0840008b859339e30ae5968a3f5 (patch) | |
tree | 2db0057a7c71428b370882a07ac0e5b9165f4632 /x11/fbdesk | |
parent | 1337df5fe5e2d550670f44c34d0ab7cca75c33d8 (diff) | |
download | ports-8279be4155b8b0840008b859339e30ae5968a3f5.tar.gz ports-8279be4155b8b0840008b859339e30ae5968a3f5.zip |
Notes
Diffstat (limited to 'x11/fbdesk')
-rw-r--r-- | x11/fbdesk/files/patch-src::FbTk::FbWindow.cc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/x11/fbdesk/files/patch-src::FbTk::FbWindow.cc b/x11/fbdesk/files/patch-src::FbTk::FbWindow.cc new file mode 100644 index 000000000000..9f79c911324e --- /dev/null +++ b/x11/fbdesk/files/patch-src::FbTk::FbWindow.cc @@ -0,0 +1,12 @@ +--- src/FbTk/FbWindow.cc.orig Sat Feb 14 10:48:03 2004 ++++ src/FbTk/FbWindow.cc Sat Feb 14 10:48:11 2004 +@@ -168,7 +168,8 @@ + Window root; + size_t border_width, depth; + XGetGeometry(s_display, m_window, &root, &m_x, &m_y, +- &m_width, &m_height, &border_width, &depth); ++ (unsigned int*) &m_width, (unsigned int*) &m_height, ++ (unsigned int*) &border_width, (unsigned int*) &depth); + } + + void FbWindow::create(Window parent, int x, int y, |