diff options
author | Peter Åstrand <astrand@cendio.se> | 2008-12-09 10:41:59 +0000 |
---|---|---|
committer | Peter Åstrand <astrand@cendio.se> | 2008-12-09 10:41:59 +0000 |
commit | f84b0433b6088ade9ed4064b4fba9cb00040f65f (patch) | |
tree | 9924249b8763416118b4efdda8ce781afd6da5a5 /win | |
parent | d6b9670a7d9f8005bbd148d5a5d8fd3db2ec4ed4 (diff) | |
download | tigervnc-f84b0433b6088ade9ed4064b4fba9cb00040f65f.tar.gz tigervnc-f84b0433b6088ade9ed4064b4fba9cb00040f65f.zip |
MinGW tweak. baseClass is defined in MsgWindow.cxx as well. Needs to
be static, or linking will fail with "multiple definition of
_baseClass" error.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3330 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'win')
-rw-r--r-- | win/vncviewer/DesktopWindow.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/vncviewer/DesktopWindow.cxx b/win/vncviewer/DesktopWindow.cxx index 296be662..e282a283 100644 --- a/win/vncviewer/DesktopWindow.cxx +++ b/win/vncviewer/DesktopWindow.cxx @@ -111,7 +111,7 @@ DesktopWindowClass::~DesktopWindowClass() { } } -DesktopWindowClass baseClass; +static DesktopWindowClass baseClass; // // -=- FrameClass |