diff options
author | George Hazan <george.hazan@gmail.com> | 2014-07-26 17:02:28 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-07-26 17:02:28 +0000 |
commit | e52c300401ddd8188a9fb9db307e369428cbeb19 (patch) | |
tree | 3e0b77f5a73dfd3b4ca9cfbb85701d847b0dee76 /src/core | |
parent | 0aa96e0a23064eb3d2a041c2acebd30855d5245e (diff) |
- unified bkChanged processing;
- clist background bitmap processing also moved to the core
git-svn-id: http://svn.miranda-ng.org/main/trunk@9950 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/stdclist/src/clcfonts.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/core/stdclist/src/clcfonts.cpp b/src/core/stdclist/src/clcfonts.cpp index 593f37cb3b..ceed5e591d 100644 --- a/src/core/stdclist/src/clcfonts.cpp +++ b/src/core/stdclist/src/clcfonts.cpp @@ -136,19 +136,5 @@ void LoadClcOptions(HWND hwnd, struct ClcData *dat, BOOL bFirst) }
ReleaseDC(hwnd, hdc);
- if (!dat->bkChanged) {
- dat->bkColour = db_get_dw(NULL, "CLC", "BkColour", CLCDEFAULT_BKCOLOUR);
- if (dat->hBmpBackground) {
- DeleteObject(dat->hBmpBackground);
- dat->hBmpBackground = NULL;
- }
- if (db_get_b(NULL, "CLC", "UseBitmap", CLCDEFAULT_USEBITMAP)) {
- ptrA szBitmap(db_get_sa(NULL, "CLC", "BkBitmap"));
- if (szBitmap)
- dat->hBmpBackground = (HBITMAP)CallService(MS_UTILS_LOADBITMAP, 0, szBitmap);
- }
- dat->backgroundBmpUse = db_get_w(NULL, "CLC", "BkBmpUse", CLCDEFAULT_BKBMPUSE);
- }
-
coreCli.pfnLoadClcOptions(hwnd, dat, bFirst);
}
|