Author: AlbrechtS
Date: 2010-08-24 01:16:54 -0700 (Tue, 24 Aug 2010)
New Revision: 7687
Log:
Fixed compiler warnings
Modified:
branches/branch-1.3/src/Fl_Group.cxx
Modified: branches/branch-1.3/src/Fl_Group.cxx
===================================================================
--- branches/branch-1.3/src/Fl_Group.cxx 2010-08-24 08:12:50 UTC (rev
7686)
+++ branches/branch-1.3/src/Fl_Group.cxx 2010-08-24 08:16:54 UTC (rev
7687)
@@ -600,7 +600,7 @@
Fl_Widget::resize(X,Y,W,H); // make new xywh values visible for children
- if (!resizable() || dw==0 && dh==0 ) {
+ if (!resizable() || (dw==0 && dh==0) ) {
if (type() < FL_WINDOW) {
Fl_Widget*const* a = array();
@@ -740,7 +740,7 @@
// skip any labels that are inside the widget:
if (!(widget.align()&15) || (widget.align() & FL_ALIGN_INSIDE)) return;
// invent a box that is outside the widget:
- int a = widget.align();
+ Fl_Align a = widget.align();
int X = widget.x();
int Y = widget.y();
int W = widget.w();
_______________________________________________
fltk-commit mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-commit