mirror of
https://github.com/fltk/fltk.git
synced 2026-06-06 00:22:42 +08:00
Add FL_EXPORT to nested classes.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2924 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
@@ -1,6 +1,8 @@
|
|||||||
CHANGES IN FLTK 1.1.3
|
CHANGES IN FLTK 1.1.3
|
||||||
|
|
||||||
- Documentation updates.
|
- Documentation updates.
|
||||||
|
- The Fl_Preferences header file needed to FL_EXPORT all
|
||||||
|
of the nested classes for WIN32.
|
||||||
- Fl_Double_Window couldn't be nested on WIN32. [SF Bug
|
- Fl_Double_Window couldn't be nested on WIN32. [SF Bug
|
||||||
#658219]
|
#658219]
|
||||||
- Fl_Slider didn't call the callback function when the
|
- Fl_Slider didn't call the callback function when the
|
||||||
|
|||||||
+5
-5
@@ -1,5 +1,5 @@
|
|||||||
//
|
//
|
||||||
// "$Id: Fl_Preferences.H,v 1.1.2.11 2002/09/05 20:44:35 matthiaswm Exp $"
|
// "$Id: Fl_Preferences.H,v 1.1.2.12 2003/01/21 14:51:54 easysw Exp $"
|
||||||
//
|
//
|
||||||
// Preferences definitions for the Fast Light Tool Kit (FLTK).
|
// Preferences definitions for the Fast Light Tool Kit (FLTK).
|
||||||
//
|
//
|
||||||
@@ -83,7 +83,7 @@ public:
|
|||||||
// char export( const char *filename, Type fileFormat );
|
// char export( const char *filename, Type fileFormat );
|
||||||
// char import( const char *filename );
|
// char import( const char *filename );
|
||||||
|
|
||||||
class Name {
|
class FL_EXPORT Name {
|
||||||
char *data_;
|
char *data_;
|
||||||
public:
|
public:
|
||||||
Name( unsigned int n );
|
Name( unsigned int n );
|
||||||
@@ -101,7 +101,7 @@ private:
|
|||||||
|
|
||||||
static char nameBuffer[128];
|
static char nameBuffer[128];
|
||||||
|
|
||||||
class Node // a node contains a list to all its entries
|
class FL_EXPORT Node // a node contains a list to all its entries
|
||||||
{ // and all means to manage the tree structure
|
{ // and all means to manage the tree structure
|
||||||
Node *child_, *next_, *parent_;
|
Node *child_, *next_, *parent_;
|
||||||
char *path_;
|
char *path_;
|
||||||
@@ -133,7 +133,7 @@ private:
|
|||||||
};
|
};
|
||||||
friend class Node;
|
friend class Node;
|
||||||
|
|
||||||
class RootNode // the root node manages file paths and basic reading and writing
|
class FL_EXPORT RootNode // the root node manages file paths and basic reading and writing
|
||||||
{
|
{
|
||||||
Fl_Preferences *prefs_;
|
Fl_Preferences *prefs_;
|
||||||
char *filename_;
|
char *filename_;
|
||||||
@@ -157,5 +157,5 @@ private:
|
|||||||
#endif // !Fl_Preferences_H
|
#endif // !Fl_Preferences_H
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_Preferences.H,v 1.1.2.11 2002/09/05 20:44:35 matthiaswm Exp $".
|
// End of "$Id: Fl_Preferences.H,v 1.1.2.12 2003/01/21 14:51:54 easysw Exp $".
|
||||||
//
|
//
|
||||||
|
|||||||
Reference in New Issue
Block a user