1. added wxGTK::wxToolBar::SetToolShortHelp() and test for it in sample

2. fix a crash if SetSelection is called too early in wxTextCtrl
3. patch for mouse position in wxTreeCtrl events


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8805 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2000-11-24 17:07:12 +00:00
parent 38cfbffa15
commit a1f79c1e00
10 changed files with 70 additions and 12 deletions

View File

@@ -35,12 +35,12 @@
// what to test (in alphabetic order)?
#define TEST_ARRAYS
//#define TEST_ARRAYS
//#define TEST_CMDLINE
//#define TEST_DATETIME
//#define TEST_DIR
//#define TEST_DLLLOADER
//#define TEST_EXECUTE
#define TEST_EXECUTE
//#define TEST_FILE
//#define TEST_FILECONF
//#define TEST_HASH
@@ -49,7 +49,7 @@
//#define TEST_LONGLONG
//#define TEST_MIME
//#define TEST_INFO_FUNCTIONS
#define TEST_REGISTRY
//#define TEST_REGISTRY
//#define TEST_SOCKETS
//#define TEST_STREAMS
//#define TEST_STRINGS
@@ -296,9 +296,9 @@ static void TestExecute()
puts("*** testing wxExecute ***");
#ifdef __UNIX__
#define COMMAND "echo hi"
#define COMMAND "cat -n ../../Makefile" // "echo hi"
#define SHELL_COMMAND "echo hi from shell"
#define REDIRECT_COMMAND "date"
#define REDIRECT_COMMAND COMMAND // "date"
#elif defined(__WXMSW__)
#define COMMAND "command.com -c 'echo hi'"
#define SHELL_COMMAND "echo hi"