summaryrefslogtreecommitdiff
path: root/plugins/CSList/src/cslist.h
diff options
context:
space:
mode:
authorTobias Weimer <wishmaster51@googlemail.com>2012-11-04 21:30:55 +0000
committerTobias Weimer <wishmaster51@googlemail.com>2012-11-04 21:30:55 +0000
commitda6b969a01def44518afd0055a4bc53c648228db (patch)
tree32bc4ae8b21bee1c9d7a0e0d6a1ca8446d23f44d /plugins/CSList/src/cslist.h
parent486ade956ea661d979fb385b0efd69196b1f94d7 (diff)
fix for the locked protocols
git-svn-id: http://svn.miranda-ng.org/main/trunk@2198 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/CSList/src/cslist.h')
-rw-r--r--plugins/CSList/src/cslist.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/plugins/CSList/src/cslist.h b/plugins/CSList/src/cslist.h
index c38859fdd9..ec2e533771 100644
--- a/plugins/CSList/src/cslist.h
+++ b/plugins/CSList/src/cslist.h
@@ -556,10 +556,7 @@ struct CSWindow
{
if ( getByte( "RememberWindowPosition", DEFAULT_REMEMBER_WINDOW_POSITION ) == TRUE )
{
- RECT rect = { 0 };
- GetWindowRect( hwnd, &rect );
- setWord( "PositionX", rect.left );
- setWord( "PositionY", rect.top );
+ Utils_SaveWindowPosition(hwnd,NULL,__INTERNAL_NAME,"Position");
}
}
};
@@ -570,8 +567,6 @@ struct CSList
// global variables
static HINSTANCE handle;
static DWORD dwMirandaVersion;
- static BOOL bUnicodeCore;
- static BOOL bAccountsSupported;
// class components
CSWindow* mainWindow;
@@ -614,8 +609,6 @@ struct CSList
HINSTANCE CSList::handle = NULL;
DWORD CSList::dwMirandaVersion = 0x00000000;
-BOOL CSList::bUnicodeCore = FALSE;
-BOOL CSList::bAccountsSupported = FALSE;
// ====[ GLOBALS ]============================================================