Fixed crash-on-exit bug due to status bar being deleted twice (MDI apps);

small changes


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6677 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2000-03-14 11:25:54 +00:00
parent bc7e88ae03
commit c0bcc48068
10 changed files with 47 additions and 34 deletions

View File

@@ -1,15 +1,15 @@
Readme for wxWindows 2.0 Ide-files
First release Feb. 1999, detlev@reymann-online.de
1. What you can do with this ide-files
1. What you can do with this IDE files
2. Where to install the files
3. How to modify them for your own needs
4. How to create ide-files for your own wxWindows-programs
4. How to create IDE files for your own wxWindows-programs
1. What you can do with this ide-files
1. What you can do with this IDE files
======================================
There are two ide-files. src\bc32.ide should help you to
There are two IDE files. src\bc32.ide should help you to
create the wxWindows libraries from within the Ide of Borlands
C++, v. 5.x. Note that this doesn't include debugging code: you
need to change the settings if you wish to include debug
@@ -42,9 +42,11 @@ To add a new sample to samples\bc32.ide, follow these steps:
a. Choose Project->New target... and type in e.g.
samples\newsample. Press OK.
b. Static, no OWL, MFC or class libraries. Press OK.
b. Static, no OWL, MFC or class libraries. Check Multithread
on. Press OK.
c. Right-click on the new node, choose Add node... and add
..\lib\wx32.lib. Add any other source files you require.
..\lib\wx32.lib and ..\lib\xpm.lib. Add any other source
files you require.
d. Right-click on the new node, choose Edit Local Options.. and
add in Directories, specify the following:
@@ -54,23 +56,25 @@ d. Right-click on the new node, choose Edit Local Options.. and
Intermediate: .\newsample
Final: .\newsample
4. How to create ide-files for your own wxWindows-programs
4. How to create IDE files for your own wxWindows-programs
==========================================================
I think you are familiar with the necessary options for your own
programm. So I will only describe what is neccessary to link
yout programm with the wxWindows-library. If you want to create
a ide-file for your own wxWindows-program, create a new project
program. So I will only describe what is neccessary to link
yout program with the wxWindows library. If you want to create
an IDE file for your own wxWindows program, create a new project
from the menu file->new->project. Deactivate all the
standard-options, the only two thing that should be activated is
standard-options, the only three thing that should be activated is
"static" for the libraries, if you want to use the library
produced with the library-ide and the checkbox OLE (You can
produced with the library-ide, the checkbox OLE (you can
leave this checkbox unchecked, but then you have to add the
library \bc5\lib\ole2w32.lib to your project). You have to add
library \bc5\lib\ole2w32.lib to your project), and the
Multithread checkbox. You have to add
the include-path of wxWindows to the include-path in the
options-dialog (options->project->directories->include). The
result should be something like:
path_of_my_program;\bc5\include;\wxwin2\include; Then you have
to add the libraries to the project. Open the project-view and
activate your programm. Then right-click and choose "add" and
select the wxWindows-library (e.g. \wxwin\lib\wx32.lib).
activate your program. Then right-click and choose "add" and
select the wxWindows library (e.g. \wxwin\lib\wx32.lib). Also
add the xpm library.