diff options
author | René Schümann <white06tiger@gmail.com> | 2014-12-25 00:43:22 +0000 |
---|---|---|
committer | René Schümann <white06tiger@gmail.com> | 2014-12-25 00:43:22 +0000 |
commit | bb0836d9f53344ee8f20a5c4efd3e8d5199fe844 (patch) | |
tree | e88609af0a1af96c5831cbafd97290af32abcc89 /plugins/SendScreenshotPlus/src/Main.cpp | |
parent | 42be80f3559956cbeb6a97e9c8d7e7c11c595cb9 (diff) |
SendSS:
* added unique icons to capture mode selection tabs (also fixed German spelling error on "description" abbreviation "desc" in file names and defines)
git-svn-id: http://svn.miranda-ng.org/main/trunk@11618 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SendScreenshotPlus/src/Main.cpp')
-rw-r--r-- | plugins/SendScreenshotPlus/src/Main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/SendScreenshotPlus/src/Main.cpp b/plugins/SendScreenshotPlus/src/Main.cpp index be7537d8eb..23d5ac51ba 100644 --- a/plugins/SendScreenshotPlus/src/Main.cpp +++ b/plugins/SendScreenshotPlus/src/Main.cpp @@ -36,17 +36,17 @@ HANDLE g_hNetlibUser=0;//!< Netlib Register User FI_INTERFACE* FIP=NULL; int hLangpack;//Miranda NG langpack used by translate functions, filled by mir_getLP() -IconItem ICONS[]={ +IconItem ICONS[ICO_END_]={ {LPGEN("Main Icon"),"main",IDI_MAIN,32}, {LPGEN("Main Icon"),"mainxs",IDI_MAIN}, {LPGEN("Target Cursor"),"target",IDI_TARGET,32}, {LPGEN("Target Desktop"),"monitor",IDI_MONITOR,32}, }; -IconItem ICONS_BTN[]={ +IconItem ICONS_BTN[ICO_BTN_END_]={ {LPGEN("Help"),"help",IDI_HELP}, {LPGEN("Open Folder"),"folder",IDI_FOLDER}, - {LPGEN("Description off"),"desk",IDI_DESK}, - {LPGEN("Description on"),"deskon",IDI_DESKON}, + {LPGEN("Description off"),"desc",IDI_DESC}, + {LPGEN("Description on"),"descon",IDI_DESCON}, {LPGEN("Delete off"),"del",IDI_DEL}, {LPGEN("Delete on"),"delon",IDI_DELON}, {LPGEN("Prev"),"arrowl",IDI_ARROWL}, |