]> git.tdb.fi Git - libs/gui.git/commitdiff
Rename the entire library to mspgui
authorMikko Rasa <tdb@tdb.fi>
Fri, 26 Aug 2011 10:44:18 +0000 (13:44 +0300)
committerMikko Rasa <tdb@tdb.fi>
Fri, 26 Aug 2011 10:44:18 +0000 (13:44 +0300)
.gitignore
Build
source/graphics/window.cpp

index ccc8a165e4c49638a2059f4600ef90c7b7739738..d614451095709b27eef1adc555f2c37fb38e8ff0 100644 (file)
@@ -2,9 +2,9 @@
 /.options.*
 /.profile
 /debug
-/libmspgbase.a
-/libmspgbase.so
-/mspgbase.pc
+/libmspgui.a
+/libmspgui.so
+/mspgui.pc
 /pc-32-windows
 /release
 /temp
diff --git a/Build b/Build
index 6a78535f7154a0f8ae8bf7532f8d62f384a5ca6a..76b5622f9a41aac9f4dafccb6e3e9b1ff9fdcc05 100644 (file)
--- a/Build
+++ b/Build
@@ -1,4 +1,4 @@
-package "mspgbase"
+package "mspgui"
 {
        version "1.1";
        description "Base graphics and input library";
@@ -62,7 +62,7 @@ package "mspgbase"
                install true;
        };
 
-       library "mspgbase"
+       library "mspgui"
        {
                source "source/graphics";
                source "source/input";
index 77959ded2ddd3de77627846028f5a7946ae9cd8b..199f5269498b8b7445153de8f5cae249de84f6c9 100644 (file)
@@ -99,7 +99,7 @@ void Window::init()
                wndcl.hCursor = LoadCursor(0, IDC_ARROW);
                wndcl.hbrBackground = 0;
                wndcl.lpszMenuName = 0;
-               wndcl.lpszClassName = "mspgbase";
+               wndcl.lpszClassName = "mspgui";
                wndcl.hIconSm = 0;
 
                if(!RegisterClassEx(&wndcl))
@@ -118,7 +118,7 @@ void Window::init()
        AdjustWindowRectEx(&rect, style, false, exstyle);
 
        priv->window = CreateWindowEx(exstyle,
-               "mspgbase",
+               "mspgui",
                "Window",
                style,
                CW_USEDEFAULT, CW_USEDEFAULT,