]> git.saurik.com Git - wxWidgets.git/commitdiff
added WindowsXP manifest directly into application's resources
authorVáclav Slavík <vslavik@fastmail.fm>
Fri, 11 Apr 2003 23:22:39 +0000 (23:22 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Fri, 11 Apr 2003 23:22:39 +0000 (23:22 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20147 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/changes.txt
include/wx/msw/wx.manifest [new file with mode: 0644]
include/wx/msw/wx.rc

index e4125b5563d4de9f247b96d097eaf74259e0a44c..b856507fe8a4e128424cf67b9f7619236f77cf1e 100644 (file)
@@ -110,6 +110,10 @@ wxMSW:
   wxPendingEventsLocker was being deleted in App before all wxEvtHandler
   objects have been destroyed resulting in stale handler/lock
   ptrs; fixed
+- Windows XP manifest is now included in wx.rc; it is no longer neccessary
+  to ship .exe.manifest file with applications to support XP themes
+- wxLocale::Init no longer reports error if trying to set Unicode-only locale
+  or if user's default locale is Unicode-only 
 
 wxMotif:
 
diff --git a/include/wx/msw/wx.manifest b/include/wx/msw/wx.manifest
new file mode 100644 (file)
index 0000000..ecce6f5
--- /dev/null
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
+<assemblyIdentity
+    version="0.64.1.0"
+    processorArchitecture="x86"
+    name="Controls"
+    type="win32"
+/>
+<description>wxWindows application</description>
+<dependency>
+    <dependentAssembly>
+        <assemblyIdentity
+            type="win32"
+            name="Microsoft.Windows.Common-Controls"
+            version="6.0.0.0"
+            processorArchitecture="X86"
+            publicKeyToken="6595b64144ccf1df"
+            language="*"
+        />
+    </dependentAssembly>
+</dependency>
+</assembly>
index e99ea3d244b53c388943400b94de97fdeb3babce..fa299cbc136a1c04b536152a678b55e90ebd05f8 100644 (file)
@@ -105,3 +105,9 @@ csquery                 BITMAP "wx/msw/csquery.bmp"
 // For obtaining the RGB values of standard colours
 wxBITMAP_STD_COLOURS    BITMAP "wx/msw/colours.bmp"
 
+//////////////////////////////////////////////////////////////////////////////
+//
+// Manifest file for Windows XP
+//
+
+1 24 "wx/msw/wx.manifest"