summaryrefslogtreecommitdiff
path: root/tipper/popwin.cpp
diff options
context:
space:
mode:
authorsje <sje@4f64403b-2f21-0410-a795-97e2b3489a10>2006-11-29 09:47:07 +0000
committersje <sje@4f64403b-2f21-0410-a795-97e2b3489a10>2006-11-29 09:47:07 +0000
commit1789d473b341d4e7362c0a08ffc3d4624e61f773 (patch)
tree77f7c5ec9a6e0759483687c142228689fb46619d /tipper/popwin.cpp
parent1dee19d1535810463918256017c952d60182220c (diff)
TioDuke patches again - thanks (fix corrupted status message, and 'flickering')
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@67 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'tipper/popwin.cpp')
-rw-r--r--tipper/popwin.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/tipper/popwin.cpp b/tipper/popwin.cpp
index a092663..bddb175 100644
--- a/tipper/popwin.cpp
+++ b/tipper/popwin.cpp
@@ -205,7 +205,9 @@ LRESULT CALLBACK PopupWindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lPa
pwd->iconIndex = (int)CallService(MS_CLIST_GETCONTACTICON, (WPARAM)pwd->hContact, 0);
// don't use stored status message
- DBDeleteContactSetting(pwd->hContact, MODULE, "TempStatusMsg");
+ // problem with delete setting?
+ //DBDeleteContactSetting(pwd->hContact, MODULE, "TempStatusMsg");
+ DBWriteContactSettingTString(pwd->hContact, MODULE, "TempStatusMsg", _T(""));
if(unicode_system) {
TCHAR *stzCDN = (TCHAR *) CallService(MS_CLIST_GETCONTACTDISPLAYNAME, (WPARAM)pwd->hContact, GCDNF_TCHAR);