Browse Source

*** empty log message ***

Cary Sandvig 25 years ago
parent
commit
933b12bbeb

+ 1 - 1
panda/src/gui/guiButton.h

@@ -12,7 +12,7 @@
 
 #include <eventHandler.h>
 
-class GuiButton : public Namable {
+class EXPCL_PANDA GuiButton : public Namable {
 private:
   GuiLabel* _up;
   GuiLabel* _up_rollover;

+ 1 - 1
panda/src/gui/guiLabel.h

@@ -17,7 +17,7 @@
 
 class GuiManager;
 
-class GuiLabel {
+class EXPCL_PANDA GuiLabel {
 private:
   enum LabelType { NONE, SIMPLE_TEXTURE, SIMPLE_TEXT };
   LabelType _type;

+ 1 - 1
panda/src/gui/guiManager.h

@@ -17,7 +17,7 @@
 #include "guiLabel.h"
 #include "config_gui.h"
 
-class GuiManager {
+class EXPCL_PANDA GuiManager {
 private:
   typedef map<GraphicsWindow*, GuiManager*> GuiMap;
   static GuiMap* _map;

+ 1 - 1
panda/src/gui/guiRegion.h

@@ -14,7 +14,7 @@
 
 class GuiManager;
 
-class GuiRegion : public Namable {
+class EXPCL_PANDA GuiRegion : public Namable {
 private:
   float _left, _right, _bottom, _top;
   PT(MouseWatcherRegion) _region;

+ 1 - 1
panda/src/gui/guiRollover.h

@@ -12,7 +12,7 @@
 
 #include <eventHandler.h>
 
-class GuiRollover : public Namable {
+class EXPCL_PANDA GuiRollover : public Namable {
 private:
   GuiLabel* _off;
   GuiLabel* _on;