Changeset ab3e1260b7d6d342fb8e019144054b37026198fb
- Timestamp:
- 01/10/04 00:17:54
(4 years ago)
- Author:
- Gildas Bazin <gbazin@videolan.org>
- git-committer:
- Gildas Bazin <gbazin@videolan.org> 1096582674 +0000
- git-parent:
[49abe97532f9af69b8a4bd3cb94e508bacde3f76]
- git-author:
- Gildas Bazin <gbazin@videolan.org> 1096582674 +0000
- Message:
* modules/gui/wxwindows/*: win32 fixes with new wxWidgets.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r4758ccb |
rab3e126 |
|
| 373 | 373 | 22 /* approximate margin */; |
|---|
| 374 | 374 | #else |
|---|
| | 375 | #if (wxMAJOR_VERSION <= 2) && (wxMINOR_VERSION <= 5) && (wxRELEASE_NUMBER < 3) |
|---|
| 375 | 376 | 4 /* approximate margin */; |
|---|
| | 377 | #else |
|---|
| | 378 | 15 /* approximate margin */; |
|---|
| | 379 | #endif |
|---|
| 376 | 380 | #endif |
|---|
| 377 | 381 | } |
|---|
| r4f249bf |
rab3e126 |
|
| 706 | 706 | b_advanced = VLC_TRUE; |
|---|
| 707 | 707 | SetAutoLayout( TRUE ); |
|---|
| | 708 | Hide(); |
|---|
| 708 | 709 | |
|---|
| 709 | 710 | wxBoxSizer *sizer = new wxBoxSizer( wxVERTICAL ); |
|---|
| … | … | |
| 815 | 816 | sizer->Layout(); |
|---|
| 816 | 817 | SetSizer( sizer ); |
|---|
| | 818 | Show(); |
|---|
| 817 | 819 | } |
|---|
| 818 | 820 | |
|---|
| ra748c62 |
rab3e126 |
|
| 40 | 40 | |
|---|
| 41 | 41 | /* Temporary hack */ |
|---|
| 42 | | #if defined(WIN32) && defined(_WX_INIT_H_) |
|---|
| | 42 | #if defined(WIN32) && defined(_WX_INIT_H_) |
|---|
| | 43 | #if (wxMAJOR_VERSION <= 2) && (wxMINOR_VERSION <= 5) && (wxRELEASE_NUMBER < 3) |
|---|
| 43 | 44 | /* Hack to detect wxWindows 2.5 which has a different wxEntry() prototype */ |
|---|
| 44 | 45 | extern int wxEntry( HINSTANCE hInstance, HINSTANCE hPrevInstance = NULL, |
|---|
| 45 | 46 | char *pCmdLine = NULL, int nCmdShow = SW_NORMAL ); |
|---|
| 46 | 47 | #endif |
|---|
| | 48 | #endif |
|---|
| | 49 | |
|---|
| 47 | 50 | #ifdef SYS_DARWIN |
|---|
| 48 | 51 | int wxEntry( int argc, char *argv[] , bool enterLoop = TRUE ); |
|---|