diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2012-12-29 16:02:07 +0200 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2012-12-29 16:02:07 +0200 |
commit | 340cd4c07beac3df1d2184ab499feb049c285a3f (patch) | |
tree | 7acca9e69e843eba81c0ece8cac2c048f3bcd388 /src/init.cpp | |
parent | 5ed7fd21c685c3c445cbfb75b50f8a7eb168fd8c (diff) |
bold font in keygen
Diffstat (limited to 'src/init.cpp')
-rwxr-xr-x | src/init.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/init.cpp b/src/init.cpp index 5545368..e01fed2 100755 --- a/src/init.cpp +++ b/src/init.cpp @@ -23,6 +23,7 @@ TCHAR *inopentag = NULL, *inclosetag = NULL, *outopentag = NULL, *outclosetag = list <JabberAccount*> Accounts;
HINSTANCE hInst;
+HFONT bold_font = NULL;
HANDLE hLoadPubKey = NULL, hToggleEncryption = NULL, hOnPreBuildContactMenu = NULL, hSendKey = NULL, g_hCLIcon = NULL, hExportGpgKeys = NULL, hImportGpgKeys = NULL;
extern char *date();
RECT key_from_keyserver_rect = {0}, firstrun_rect = {0}, new_key_rect = {0}, key_gen_rect = {0}, load_key_rect = {0}, import_key_rect = {0}, key_password_rect = {0}, load_existing_key_rect = {0};
@@ -110,6 +111,7 @@ void init_vars() load_existing_key_rect.left = DBGetContactSettingDword(NULL, szGPGModuleName, "LoadExistingKeyWindowX", 0);
load_existing_key_rect.top = DBGetContactSettingDword(NULL, szGPGModuleName, "LoadExistingKeyWindowY", 0);
tabsrmm_used = isTabsrmmUsed();
+ bold_font = CreateFont(14, 0, 0, 0, 600, 0, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, _T("Arial"));
}
static int OnModulesLoaded(WPARAM wParam,LPARAM lParam)
|