diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-12-09 15:06:50 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-12-09 15:06:50 +0000 |
commit | 5b3b0aeb2b0f3d56bc43d9ae04000f510ad61b4d (patch) | |
tree | 7dd965d60ef7163e7a8aaa9ca39256f398fca87d /plugins/YAPP/src/yapp.cpp | |
parent | 7771d82291c8cd6f25207c880cc866d6b1aac15c (diff) |
revert hooking options pages creation removed in rev 2613
git-svn-id: http://svn.miranda-ng.org/main/trunk@2704 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/YAPP/src/yapp.cpp')
-rw-r--r-- | plugins/YAPP/src/yapp.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/YAPP/src/yapp.cpp b/plugins/YAPP/src/yapp.cpp index 985d2b6287..9b94400299 100644 --- a/plugins/YAPP/src/yapp.cpp +++ b/plugins/YAPP/src/yapp.cpp @@ -44,7 +44,7 @@ extern "C" BOOL APIENTRY DllMain( HMODULE hModule, DWORD ul_reason_for_call, LP {
hInst = hModule;
DisableThreadLibraryCalls(hInst);
- return TRUE;
+ return TRUE;
}
extern "C" YAPP_API PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion)
@@ -108,7 +108,7 @@ static void InitFonts() _tcscpy(font_id_time.backgroundName, _T("Background"));
font_id_time.order = 2;
FontRegisterT(&font_id_time);
-
+
colour_id_bg.cbSize = sizeof(ColourIDT);
_tcscpy(colour_id_bg.group, LPGENT("Popups"));
_tcscpy(colour_id_bg.name, LPGENT("Background"));
@@ -144,7 +144,7 @@ static void InitFonts() colour_id_titleunderline.defcolour = GetSysColor(COLOR_3DSHADOW);
colour_id_titleunderline.order = 3;
ColourRegisterT(&colour_id_titleunderline);
-
+
ReloadFont(0, 0);
}
@@ -156,7 +156,7 @@ int ModulesLoaded(WPARAM wParam, LPARAM lParam) lstPopupHistory.SetRenderer(RENDER_HISTORYPP);
HookEvent(ME_FONT_RELOAD, ReloadFont);
-
+
LoadModuleDependentOptions();
if (GetModuleHandle(_T("neweventnotify")))
|