diff options
author | George Hazan <george.hazan@gmail.com> | 2012-10-21 16:05:51 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-10-21 16:05:51 +0000 |
commit | a29bda6ec883c9377e3fe450d21f543f3a48ff02 (patch) | |
tree | c6bc8ed0c697e423d51ea5868a166062f676b3ef /plugins | |
parent | 34c11f2b4c3511476b2f09f3a438ce1f39d63bfd (diff) |
fir for a typo
git-svn-id: http://svn.miranda-ng.org/main/trunk@2026 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Clist_modern/src/modern_keyboard.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/plugins/Clist_modern/src/modern_keyboard.cpp b/plugins/Clist_modern/src/modern_keyboard.cpp index e241256bee..857f89f4e1 100644 --- a/plugins/Clist_modern/src/modern_keyboard.cpp +++ b/plugins/Clist_modern/src/modern_keyboard.cpp @@ -2,8 +2,8 @@ Miranda IM: the free IM client for Microsoft* Windows*
-Copyright 2000-2008 Miranda ICQ/IM project,
-all portions of this codebase are copyrighted to the people
+Copyright 2000-2008 Miranda ICQ/IM project,
+all portions of this codebase are copyrighted to the people
listed in contributors.txt.
This program is free software; you can redistribute it and/or
@@ -52,20 +52,20 @@ int InitSkinHotKeys(void) shk.pszName = "CloseMiranda";
shk.ptszSection = LPGENT("Main");
shk.pszService = "CLIST/HK/CloseMiranda";
- Hotkey_Register(&shk);
+ Hotkey_Register(&shk);
shk.ptszDescription = LPGENT("Restore last status");
shk.pszName = "RestoreLastStatus";
shk.ptszSection = LPGENT("Status");
shk.pszService = "CLIST/HK/RestoreStatus";
- Hotkey_Register(&shk);
-
- shk.ptszDescription = LPGENT("Show/Hide Ofline Users");
+ Hotkey_Register(&shk);
+
+ shk.ptszDescription = LPGENT("Show/Hide Offline Users");
shk.pszName = "ShowHideOfflineUsers";
shk.ptszSection = LPGENT("Main");
shk.pszService = MS_CLIST_TOGGLEHIDEOFFLINE;
- Hotkey_Register(&shk);
-
+ Hotkey_Register(&shk);
+
return 0;
}
|