summaryrefslogtreecommitdiff
path: root/src/FbTk/FbWindow.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/FbTk/FbWindow.cc')
-rw-r--r--src/FbTk/FbWindow.cc8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/FbTk/FbWindow.cc b/src/FbTk/FbWindow.cc
index 67afb68..2209835 100644
--- a/src/FbTk/FbWindow.cc
+++ b/src/FbTk/FbWindow.cc
@@ -19,7 +19,7 @@
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE. 20// DEALINGS IN THE SOFTWARE.
21 21
22// $Id: FbWindow.cc,v 1.36 2004/06/15 11:03:17 fluxgen Exp $ 22// $Id: FbWindow.cc,v 1.37 2004/08/31 15:26:39 rathnor Exp $
23 23
24#include "FbWindow.hh" 24#include "FbWindow.hh"
25 25
@@ -35,7 +35,11 @@
35#include <X11/Xutil.h> 35#include <X11/Xutil.h>
36#include <X11/Xatom.h> 36#include <X11/Xatom.h>
37 37
38#include <cassert> 38#ifdef HAVE_CASSERT
39 #include <cassert>
40#else
41 #include <assert.h>
42#endif
39 43
40namespace FbTk { 44namespace FbTk {
41 45