]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/xforms_helpers.C
remove defaults stuff, let Qt handle no toolbar
[lyx.git] / src / frontends / xforms / xforms_helpers.C
index aceff7a8da213ff4a51df87a80f14048cb0a2228..1fe3d7bac36af3c6fae890f01bf066bd2de2bac7 100644 (file)
@@ -26,6 +26,7 @@
 #include <fstream>
 
 #include FORMS_H_LOCATION
+#include "combox.h"
 
 using std::ofstream;
 using std::pair;
@@ -131,6 +132,10 @@ string const getString(FL_OBJECT * ob, int line)
                        tmp = fl_get_choice_item_text(ob, line);
                break;
 
+       case FL_COMBOX:
+               tmp = fl_get_combox_text(ob);
+               break;
+
        default:
                lyx::Assert(0);
        }