From 2c1a61f471b8fdbc5d9ef9781d9c6cc1442f1a1c Mon Sep 17 00:00:00 2001
From: Tobias Weimer <wishmaster51@googlemail.com>
Date: Sat, 24 Nov 2012 10:51:56 +0000
Subject: minor visual glitch

git-svn-id: http://svn.miranda-ng.org/main/trunk@2458 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
---
 plugins/CSList/src/cslist.cpp | 11 +++++------
 plugins/CSList/src/resource.h |  2 +-
 2 files changed, 6 insertions(+), 7 deletions(-)

(limited to 'plugins/CSList/src')

diff --git a/plugins/CSList/src/cslist.cpp b/plugins/CSList/src/cslist.cpp
index f0d824fb7c..94b1235cb9 100644
--- a/plugins/CSList/src/cslist.cpp
+++ b/plugins/CSList/src/cslist.cpp
@@ -235,12 +235,11 @@ void forAllProtocols( pForAllProtosFunc pFunc, void *arg )
 
 void addProtoStatusMenuItem(char *protoName, void *arg)
 {
-	char buf[200];
-	PROTOACCOUNT *pdescr;
-	pdescr = (PROTOACCOUNT*)CallService(MS_PROTO_GETACCOUNT, 0, (LPARAM)protoName);
+	PROTOACCOUNT *pdescr = ProtoGetAccount(protoName);
 	if (pdescr == NULL)
 		return;
 
+	char buf[200];
 	mir_snprintf(buf, SIZEOF(buf), "CSList/ShowList/%s", protoName);
 	if ( !ServiceExists(buf))
 		CreateServiceFunctionParam(buf, showList, (LPARAM)protoName);
@@ -324,7 +323,7 @@ CSWindow::~CSWindow()
 
 void CSWindow::initIcons()
 {
-	PROTOACCOUNT *pdescr = (PROTOACCOUNT*)CallService(MS_PROTO_GETACCOUNT, 0, (LPARAM)m_protoName);
+	PROTOACCOUNT *pdescr = ProtoGetAccount(m_protoName);
 	if (pdescr == NULL)
 		return;
 
@@ -468,13 +467,13 @@ CSAMWindow::~CSAMWindow()
 
 void CSAMWindow::exec()
 {
-	DialogBoxParam( g_hInst, MAKEINTRESOURCE( IDD_ADDMODIFY ), NULL, ( DLGPROC )CSAMWindowProc, (LPARAM)this );
+	DialogBoxParam( g_hInst, MAKEINTRESOURCE( IDD_ADDMODIFY ), NULL, CSAMWindowProc, (LPARAM)this );
 }
 
 
 void CSAMWindow::setCombo()
 {
-	PROTOACCOUNT *pdescr = (PROTOACCOUNT*)CallService(MS_PROTO_GETACCOUNT, 0, (LPARAM)m_parent->m_protoName);
+	PROTOACCOUNT *pdescr = ProtoGetAccount(m_parent->m_protoName);
 	if (pdescr == NULL)
 		return;
 
diff --git a/plugins/CSList/src/resource.h b/plugins/CSList/src/resource.h
index 6a9a6f540d..65eb286097 100644
--- a/plugins/CSList/src/resource.h
+++ b/plugins/CSList/src/resource.h
@@ -1,6 +1,6 @@
 //{{NO_DEPENDENCIES}}
 // Microsoft Visual C++ generated include file.
-// Used by cslist.rc
+// Used by C:\Users\xx\Documents\Visual Studio 2010\Projects\myranda\plugins\CSList\res\cslist.rc
 //
 #define IDCLOSE                         8
 #define IDC_CANCEL                      9
-- 
cgit v1.2.3