summaryrefslogtreecommitdiffstats
path: root/sigmodr/widgets/TypeUI.h
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2009-02-23 18:52:54 -0500
committerBen Boeckel <MathStuf@gmail.com>2009-02-23 18:53:10 -0500
commit377a3bf21b96d6f6989322be64819130d3a16c11 (patch)
tree518bcafe700742de354d6bd0e23e01a688ed1c24 /sigmodr/widgets/TypeUI.h
parentae14caeff2938d3375c2bfe97ae3f81fde1e3f37 (diff)
downloadsigen-377a3bf21b96d6f6989322be64819130d3a16c11.tar.gz
sigen-377a3bf21b96d6f6989322be64819130d3a16c11.tar.xz
sigen-377a3bf21b96d6f6989322be64819130d3a16c11.zip
Fixed up headers it be in the Sigmodr::Widgets namespace
Diffstat (limited to 'sigmodr/widgets/TypeUI.h')
-rw-r--r--sigmodr/widgets/TypeUI.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/sigmodr/widgets/TypeUI.h b/sigmodr/widgets/TypeUI.h
index 55ce9ebd..12aaa2f3 100644
--- a/sigmodr/widgets/TypeUI.h
+++ b/sigmodr/widgets/TypeUI.h
@@ -15,8 +15,8 @@
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef SIGMODR_TYPEUI
-#define SIGMODR_TYPEUI
+#ifndef SIGMODRWIDGETS_TYPEUI
+#define SIGMODRWIDGETS_TYPEUI
// Form include
#include "ui_type.h"
@@ -32,7 +32,9 @@ class Type;
namespace Sigmodr
{
-class TypeUI : public ObjectUI, private Ui::formType
+namespace Widgets
+{
+class SIGMODRWIDGETS_EXPORT TypeUI : public ObjectUI, private Ui::formType
{
Q_OBJECT
@@ -49,5 +51,6 @@ class TypeUI : public ObjectUI, private Ui::formType
void setGui();
};
}
+}
#endif