]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/window.cpp
fixed text ctrl tooltips (patch 562210)
[wxWidgets.git] / src / motif / window.cpp
index e51b353f980b61795fd9209a41ff9bc859bbc48d..3d778a7fa6b9b76ea112a5c390722c1d347e0806 100644 (file)
@@ -817,8 +817,9 @@ int wxWindow::GetScrollRange(int orient) const
     Widget scrollBar = (Widget)GetScrollbar((wxOrientation)orient);
     wxCHECK_MSG( scrollBar, 0, "no such scrollbar" );
 
-    int range;
-    XtVaGetValues(scrollBar, XmNmaximum, &range, NULL);
+    int range = 0;
+    if (scrollBar) 
+        XtVaGetValues(scrollBar, XmNmaximum, &range, NULL);
     return range;
 }