summaryrefslogtreecommitdiff
path: root/FL/Fl_Multi_Browser.H
diff options
context:
space:
mode:
Diffstat (limited to 'FL/Fl_Multi_Browser.H')
-rw-r--r--FL/Fl_Multi_Browser.H4
1 files changed, 4 insertions, 0 deletions
diff --git a/FL/Fl_Multi_Browser.H b/FL/Fl_Multi_Browser.H
index 3502c4e63..2f029629a 100644
--- a/FL/Fl_Multi_Browser.H
+++ b/FL/Fl_Multi_Browser.H
@@ -51,8 +51,12 @@ public:
The constructor specializes Fl_Browser() by setting the type to FL_MULTI_BROWSER.
The destructor destroys the widget and frees all memory that has been allocated.
*/
+#if defined(FL_DLL) // implementation in src/Fl_Browser.cxx
+ Fl_Multi_Browser(int X,int Y,int W,int H,const char *L=0);
+#else
Fl_Multi_Browser(int X,int Y,int W,int H,const char *L=0)
: Fl_Browser(X,Y,W,H,L) {type(FL_MULTI_BROWSER);}
+#endif
};
#endif