diff options
author | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-01-31 00:17:30 +0000 |
---|---|---|
committer | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-01-31 00:17:30 +0000 |
commit | 9b1bb8df8c9cde0161cbce717d1aae637d4c2b5e (patch) | |
tree | 8d154d3737fecc6c9b78109fc610250034db90eb | |
parent | a912097411a247b945841c172cb2fe7a6b748518 (diff) |
fix resources
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@97 4f64403b-2f21-0410-a795-97e2b3489a10
-rw-r--r-- | yapp/popups2.rc | 11 | ||||
-rw-r--r-- | yapp/popups2_8.vcproj | 4 | ||||
-rw-r--r-- | yapp/resource.h | 5 | ||||
-rw-r--r-- | yapp/version.h | 2 |
4 files changed, 19 insertions, 3 deletions
diff --git a/yapp/popups2.rc b/yapp/popups2.rc index 9ffafcd..daf9b25 100644 --- a/yapp/popups2.rc +++ b/yapp/popups2.rc @@ -71,6 +71,8 @@ FONT 8, "MS Shell Dlg", 400, 0, 0x1 BEGIN
PUSHBUTTON "Close",IDC_CLOSE,413,285,50,14
CONTROL "",IDC_LST_HISTORY,"SysListView32",LVS_REPORT | LVS_SINGLESEL | LVS_ALIGNLEFT | WS_BORDER | WS_TABSTOP,4,3,459,278
+ EDITTEXT IDC_HISTORY_FILTER,4,285,176,14,ES_AUTOHSCROLL
+ CONTROL "Case sensitive",IDC_HISTORY_FILTER_CASESENSITIVE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,185,287,222,10
END
IDD_OPT1 DIALOGEX 0, 0, 297, 218
@@ -153,6 +155,15 @@ BEGIN END
#endif // APSTUDIO_INVOKED
+
+/////////////////////////////////////////////////////////////////////////////
+//
+// Icon
+//
+
+// Icon with lowest ID value placed first to ensure application icon
+// remains consistent on all systems.
+IDI_POPUP_HISTORY ICON "PPh2.ico"
#endif // English (Australia) resources
/////////////////////////////////////////////////////////////////////////////
diff --git a/yapp/popups2_8.vcproj b/yapp/popups2_8.vcproj index d2da507..7994e4e 100644 --- a/yapp/popups2_8.vcproj +++ b/yapp/popups2_8.vcproj @@ -357,6 +357,10 @@ </FileConfiguration>
</File>
<File
+ RelativePath=".\PPh2.ico"
+ >
+ </File>
+ <File
RelativePath=".\resource.rc"
>
</File>
diff --git a/yapp/resource.h b/yapp/resource.h index 8d1a719..5e3bd9f 100644 --- a/yapp/resource.h +++ b/yapp/resource.h @@ -1,6 +1,6 @@ //{{NO_DEPENDENCIES}}
// Microsoft Visual C++ generated include file.
-// Used by resource.rc
+// Used by popups2.rc
//
#define IDD_OPT1 101
#define IDD_DIALOG1 102
@@ -8,6 +8,7 @@ #define IDD_LST_HISTORY 104
#define IDI_ICON1 105
#define IDI_POPUP_HISTORY 105
+#define IDI_ICON2 106
#define IDC_RAD_NOTIMEOUT 1001
#define IDC_RAD_TIMEOUT 1002
#define IDC_ED_TIMEOUT 1003
@@ -64,7 +65,7 @@ //
#ifdef APSTUDIO_INVOKED
#ifndef APSTUDIO_READONLY_SYMBOLS
-#define _APS_NEXT_RESOURCE_VALUE 106
+#define _APS_NEXT_RESOURCE_VALUE 107
#define _APS_NEXT_COMMAND_VALUE 40001
#define _APS_NEXT_CONTROL_VALUE 1047
#define _APS_NEXT_SYMED_VALUE 101
diff --git a/yapp/version.h b/yapp/version.h index eb3c9f0..0d2565d 100644 --- a/yapp/version.h +++ b/yapp/version.h @@ -4,7 +4,7 @@ #define __MAJOR_VERSION 0
#define __MINOR_VERSION 2
#define __RELEASE_NUM 1
-#define __BUILD_NUM 6
+#define __BUILD_NUM 7
#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM
#define __FILEVERSION_STRING_DOTS __MAJOR_VERSION.__MINOR_VERSION.__RELEASE_NUM.__BUILD_NUM
|