Changeset feebdf7d844deb3a0fdd0a2fb2b9ad42ce1c65fa
- Timestamp:
- 07/25/05 11:44:12
(3 years ago)
- Author:
- Felix Paul Kühne <fkuehne@videolan.org>
- git-committer:
- Felix Paul Kühne <fkuehne@videolan.org> 1122284652 +0000
- git-parent:
[e0fc97039a396b035ab8d59376c254b2e33eed44]
- git-author:
- Felix Paul Kühne <fkuehne@videolan.org> 1122284652 +0000
- Message:
* AUTHORS: add a location to bigben's entry to prevent the OSX-About-Window-Parser from crashing
* other files: small patch to make sure that About.nib is loaded only once
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r5bbb474 |
rfeebdf7 |
|
| 307 | 307 | D: MacOS X Interface (playlist) |
|---|
| 308 | 308 | D: documentation |
|---|
| | 309 | S: France / Germany |
|---|
| 309 | 310 | |
|---|
| 310 | 311 | N: Emmanuel Puig |
|---|
| rfe087a3 |
rfeebdf7 |
|
| 58 | 58 | NSString *o_version; |
|---|
| 59 | 59 | NSString *o_thanks_path; |
|---|
| 60 | | |
|---|
| 61 | | /* Load the needed nib-file */ |
|---|
| 62 | | [NSBundle loadNibNamed:@"About" owner:self]; |
|---|
| 63 | 60 | |
|---|
| 64 | 61 | /* Get the info dictionary (Info.plist) */ |
|---|
| r54ee50f |
rfeebdf7 |
|
| 93 | 93 | id o_wizard; /* VLCWizard */ |
|---|
| 94 | 94 | BOOL nib_open_loaded; /* reference to the open-nib */ |
|---|
| | 95 | BOOL nib_about_loaded; /* reference to the about-nib */ |
|---|
| 95 | 96 | BOOL nib_wizard_loaded; /* reference to the wizard-nib */ |
|---|
| 96 | 97 | |
|---|
| r54ee50f |
rfeebdf7 |
|
| 1448 | 1448 | - (IBAction)viewAbout:(id)sender |
|---|
| 1449 | 1449 | { |
|---|
| 1450 | | [o_about showPanel]; |
|---|
| | 1450 | if (!nib_about_loaded) |
|---|
| | 1451 | { |
|---|
| | 1452 | nib_about_loaded = [NSBundle loadNibNamed:@"About" owner:self]; |
|---|
| | 1453 | [o_about showPanel]; |
|---|
| | 1454 | } else { |
|---|
| | 1455 | [o_about showPanel]; |
|---|
| | 1456 | } |
|---|
| 1451 | 1457 | } |
|---|
| 1452 | 1458 | |
|---|