]> git.lyx.org Git - features.git/blobdiff - src/combox.h
read the ChangeLog, use the C++ style casts more, some changes to the debugbufs,...
[features.git] / src / combox.h
index fb32d648be34a185c2671619c20ce4f28f2d1b64..6774fe36257b56568b56f313d9a561c9e6a308d7 100644 (file)
@@ -203,12 +203,12 @@ int Combox::get()
 }
 
 inline
-char const*Combox::getline()
+char const * Combox::getline()
 {
     if (type == FL_COMBOX_INPUT) 
       return fl_get_input(label);
     else
-      return ((browser) ? fl_get_browser_line(browser, sel): (char const*)0);
+      return browser ? fl_get_browser_line(browser, sel) : 0;
 }
 
 #endif