Small changes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11563 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
97f1fb1987
commit
8d07927991
@ -91,6 +91,32 @@ contrib/samples/gizmos/editlbox/*.rc
|
||||
contrib/samples/gizmos/editlbox/EditlboxVC.dsp
|
||||
contrib/samples/gizmos/editlbox/EditlboxVC.dsw
|
||||
|
||||
contrib/samples/gizmos/dynsash/*.cpp
|
||||
contrib/samples/gizmos/dynsash/*.h
|
||||
contrib/samples/gizmos/dynsash/*.def
|
||||
contrib/samples/gizmos/dynsash/makefile*
|
||||
contrib/samples/gizmos/dynsash/*.xbm
|
||||
contrib/samples/gizmos/dynsash/*.xpm
|
||||
contrib/samples/gizmos/dynsash/*.txt
|
||||
contrib/samples/gizmos/dynsash/*.ico
|
||||
contrib/samples/gizmos/dynsash/*.bmp
|
||||
contrib/samples/gizmos/dynsash/*.rc
|
||||
contrib/samples/gizmos/dynsash/DynsashVC.dsp
|
||||
contrib/samples/gizmos/dynsash/SynsashVC.dsw
|
||||
|
||||
contrib/samples/gizmos/dynsash_switch/*.cpp
|
||||
contrib/samples/gizmos/dynsash_switch/*.h
|
||||
contrib/samples/gizmos/dynsash_switch/*.def
|
||||
contrib/samples/gizmos/dynsash_switch/makefile*
|
||||
contrib/samples/gizmos/dynsash_switch/*.xbm
|
||||
contrib/samples/gizmos/dynsash_switch/*.xpm
|
||||
contrib/samples/gizmos/dynsash_switch/*.txt
|
||||
contrib/samples/gizmos/dynsash_switch/*.ico
|
||||
contrib/samples/gizmos/dynsash_switch/*.bmp
|
||||
contrib/samples/gizmos/dynsash_switch/*.rc
|
||||
contrib/samples/gizmos/dynsash_switch/DynsashSwitchVC.dsp
|
||||
contrib/samples/gizmos/dynsash_switch/DynsashSwitchVC.dsw
|
||||
|
||||
contrib/samples/animate/*.cpp
|
||||
contrib/samples/animate/*.h
|
||||
contrib/samples/animate/*.def
|
||||
|
@ -31,7 +31,7 @@
|
||||
; DO NOT DELETE THEM or you may be unable to reload the script
|
||||
|
||||
;[ScriptSetup]
|
||||
;VerNum=2.3.1
|
||||
;VerNum=2.3.2
|
||||
;InnoVer=1.3
|
||||
;AddVerTo=AppVerName
|
||||
;SetupFilename=setup.exe
|
||||
|
@ -4,13 +4,13 @@
|
||||
|
||||
[Setup]
|
||||
MinVersion=4.0,4.0
|
||||
AppName=wxWindows 2.3.1
|
||||
AppName=wxWindows 2.3.2
|
||||
AppId=wxWindows
|
||||
CreateUninstallRegKey=1
|
||||
UsePreviousAppDir=1
|
||||
UsePreviousGroup=1
|
||||
AppVersion=2.3.1
|
||||
AppVerName=wxWindows 2.3.1
|
||||
AppVersion=2.3.2
|
||||
AppVerName=wxWindows 2.3.2
|
||||
AppCopyright=Copyright Š The wxWindows Team
|
||||
BackColor=$FF0000
|
||||
BackColor2=$000000
|
||||
@ -19,7 +19,7 @@
|
||||
WindowStartMaximized=1
|
||||
WindowVisible=1
|
||||
WindowResizable=1
|
||||
UninstallDisplayName=wxWindows 2.3.1
|
||||
UninstallDisplayName=wxWindows 2.3.2
|
||||
UninstallLogMode=Append
|
||||
DirExistsWarning=auto
|
||||
UninstallFilesDir={app}
|
||||
@ -28,10 +28,10 @@
|
||||
CreateAppDir=1
|
||||
DisableProgramGroupPage=0
|
||||
AlwaysCreateUninstallIcon=1
|
||||
UninstallIconName=Uninstall wxWindows 2.3.1
|
||||
UninstallIconName=Uninstall wxWindows 2.3.2
|
||||
Uninstallable=1
|
||||
DefaultDirName=c:\wx230
|
||||
DefaultGroupName=wxWindows 2.3.1
|
||||
DefaultDirName=c:\wx232
|
||||
DefaultGroupName=wxWindows 2.3.2
|
||||
LicenseFile=C:\wx2dev\wxWindows\docs\licence.txt
|
||||
InfoBeforeFile=C:\wx2dev\wxWindows\docs\readme.txt
|
||||
InfoAfterFile=C:\wx2dev\wxWindows\docs\msw\install.txt
|
||||
|
@ -107,6 +107,8 @@ contrib/samples/gizmos/Makefile.in
|
||||
contrib/samples/gizmos/multicell/Makefile.in
|
||||
contrib/samples/gizmos/splittree/Makefile.in
|
||||
contrib/samples/gizmos/editlbox/Makefile.in
|
||||
contrib/samples/gizmos/dynsash/Makefile.in
|
||||
contrib/samples/gizmos/dynsash_switch/Makefile.in
|
||||
contrib/samples/ogl/Makefile.in
|
||||
contrib/samples/ogl/ogledit/Makefile.in
|
||||
contrib/samples/ogl/studio/Makefile.in
|
||||
|
@ -68,7 +68,11 @@ wxSplashScreen::wxSplashScreen(const wxBitmap& bitmap, long splashStyle, int mil
|
||||
|
||||
Show(TRUE);
|
||||
m_window->SetFocus();
|
||||
wxYield(); // Without this, you see a blank screen for an instant
|
||||
#ifdef __WXMSW__
|
||||
Update(); // Without this, you see a blank screen for an instant
|
||||
#else
|
||||
wxYieldIfNeeded(); // Should eliminate this
|
||||
#endif
|
||||
}
|
||||
|
||||
wxSplashScreen::~wxSplashScreen()
|
||||
|
Loading…
Reference in New Issue
Block a user