summaryrefslogtreecommitdiff
path: root/plugins/Clist_nicer
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Clist_nicer')
-rw-r--r--plugins/Clist_nicer/res/resource.rc1
-rw-r--r--plugins/Clist_nicer/src/Include/resource.h1
-rw-r--r--plugins/Clist_nicer/src/clui.cpp3
3 files changed, 0 insertions, 5 deletions
diff --git a/plugins/Clist_nicer/res/resource.rc b/plugins/Clist_nicer/res/resource.rc
index 089dc0f5b4..3c3541a321 100644
--- a/plugins/Clist_nicer/res/resource.rc
+++ b/plugins/Clist_nicer/res/resource.rc
@@ -106,7 +106,6 @@ BEGIN
CTEXT "Copyright © 2004-2010 by the Miranda IM project, 2012 by the Miranda NG project. More detailed copyright information can be found in the included README file.",IDC_COPYRIGHT,5,39,217,47
ICON 0,IDC_LOGO,201,2,20,20
LTEXT "Version",IDC_VERSION,5,19,150,15
- CTEXT "build time",IDC_BUILDTIME,37,105,150,11
CONTROL "",IDC_STATIC,"Static",SS_ETCHEDHORZ,0,117,228,1
CONTROL "Support and latest version information",IDC_SUPPORT,
"Hyperlink",WS_TABSTOP | 0x1,18,91,192,12
diff --git a/plugins/Clist_nicer/src/Include/resource.h b/plugins/Clist_nicer/src/Include/resource.h
index a2b1f5a072..0512a0dda0 100644
--- a/plugins/Clist_nicer/src/Include/resource.h
+++ b/plugins/Clist_nicer/src/Include/resource.h
@@ -111,7 +111,6 @@
#define IDC_LEFTMARGINSPIN 1092
#define IDC_NOGROUPICON 1102
#define IDC_ONECLK 1105
-#define IDC_BUILDTIME 1108
#define IDC_RIGHTMARGIN 1121
#define IDC_ROWGAP 1122
#define IDC_TRANSPARENT 1124
diff --git a/plugins/Clist_nicer/src/clui.cpp b/plugins/Clist_nicer/src/clui.cpp
index 9e5f2dbeac..83acd46531 100644
--- a/plugins/Clist_nicer/src/clui.cpp
+++ b/plugins/Clist_nicer/src/clui.cpp
@@ -1977,8 +1977,6 @@ INT_PTR CALLBACK DlgProcAbout(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPar
DWORD v = pluginInfo.version;
mir_snprintf(str, sizeof(str), "%s %d.%d.%d.%d", Translate("Version"), HIBYTE(HIWORD(v)), LOBYTE(HIWORD(v)), HIBYTE(LOWORD(v)), LOBYTE(LOWORD(v)));
SetDlgItemTextA(hwndDlg, IDC_VERSION, str);
- mir_snprintf(str, sizeof(str), Translate("Built %s %s"), __DATE__, __TIME__);
- SetDlgItemTextA(hwndDlg, IDC_BUILDTIME, str);
}
hIcon = LoadIcon(GetModuleHandleA("miranda32.exe"), MAKEINTRESOURCE(102));
SendDlgItemMessage(hwndDlg, IDC_LOGO, STM_SETICON, (WPARAM)hIcon, 0);
@@ -2001,7 +1999,6 @@ INT_PTR CALLBACK DlgProcAbout(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPar
if ((HWND)lParam == GetDlgItem(hwndDlg, IDC_WHITERECT)
|| (HWND)lParam == GetDlgItem(hwndDlg, IDC_CLNICER)
|| (HWND)lParam == GetDlgItem(hwndDlg, IDC_VERSION)
- || (HWND)lParam == GetDlgItem(hwndDlg, IDC_BUILDTIME)
|| (HWND)lParam == GetDlgItem(hwndDlg, IDC_COPYRIGHT)
|| (HWND)lParam == GetDlgItem(hwndDlg, IDC_SUPPORT)
|| (HWND)lParam == GetDlgItem(hwndDlg, IDC_LOGO)) {