]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/textctrl.cpp
Added a check for -lresolv in configure.in
[wxWidgets.git] / src / motif / textctrl.cpp
index 241308c0e2abec4b83be664c9dea41e99090dd34..224bd0200cdded248c2a8c362361bc9685ae651b 100644 (file)
@@ -522,11 +522,16 @@ long wxTextCtrl::XYToPosition(long x, long y) const
     return r+x;
 }
 
     return r+x;
 }
 
-void wxTextCtrl::PositionToXY(long pos, long *x, long *y) const
+bool wxTextCtrl::PositionToXY(long pos, long *x, long *y) const
 {
     Position xx, yy;
     XmTextPosToXY((Widget) m_mainWidget, pos, &xx, &yy);
 {
     Position xx, yy;
     XmTextPosToXY((Widget) m_mainWidget, pos, &xx, &yy);
-    *x = xx; *y = yy;
+    if ( x )
+        *x = xx;
+    if ( y )
+        *y = yy;
+
+    return TRUE;
 }
 
 void wxTextCtrl::ShowPosition(long pos)
 }
 
 void wxTextCtrl::ShowPosition(long pos)