From: Mikko Rasa Date: Fri, 26 Aug 2011 10:44:18 +0000 (+0300) Subject: Rename the entire library to mspgui X-Git-Url: http://git.tdb.fi/?p=libs%2Fgui.git;a=commitdiff_plain;h=33420ec807b0d06adff29cbd3a49e208f11d9f43 Rename the entire library to mspgui --- diff --git a/.gitignore b/.gitignore index ccc8a16..d614451 100644 --- a/.gitignore +++ b/.gitignore @@ -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 6a78535..76b5622 100644 --- 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"; diff --git a/source/graphics/window.cpp b/source/graphics/window.cpp index 77959de..199f526 100644 --- a/source/graphics/window.cpp +++ b/source/graphics/window.cpp @@ -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,