Commit ac4eb790 authored by Felix Paul Kühne's avatar Felix Paul Kühne

* clean up (mostly replacements of nestings of stringByAppendingString by stringWithFormat)

* removed the stupid "wizard help window" and replaced the help sheets with calls of NSBeginInformationalAlertSheet. This might be beautified with NSAlerts in the future, since we don't care for 10.2 anymore.
parent 90b1a99b
...@@ -33,7 +33,6 @@ ...@@ -33,7 +33,6 @@
"t6_mrInfo_sap" = id; "t6_mrInfo_sap" = id;
"t6_mrInfo_ttl" = id; "t6_mrInfo_ttl" = id;
"t7_selectTrnscdDestFile" = id; "t7_selectTrnscdDestFile" = id;
"wh_closeSheet" = id;
}; };
CLASS = VLCWizard; CLASS = VLCWizard;
LANGUAGE = ObjC; LANGUAGE = ObjC;
...@@ -131,11 +130,7 @@ ...@@ -131,11 +130,7 @@
"o_t8_txt_trnscdVideo" = id; "o_t8_txt_trnscdVideo" = id;
"o_t8_txt_ttl" = id; "o_t8_txt_ttl" = id;
"o_tab_pageHolder" = id; "o_tab_pageHolder" = id;
"o_wh_btn_okay" = id;
"o_wh_txt_text" = id;
"o_wh_txt_title" = id;
"o_wizard_window" = id; "o_wizard_window" = id;
"o_wizardhelp_window" = id;
}; };
SUPERCLASS = NSObject; SUPERCLASS = NSObject;
} }
......
...@@ -11,13 +11,12 @@ ...@@ -11,13 +11,12 @@
<integer>6</integer> <integer>6</integer>
<integer>14</integer> <integer>14</integer>
<integer>10</integer> <integer>10</integer>
<integer>270</integer>
</array> </array>
<key>IBOpenObjects</key> <key>IBOpenObjects</key>
<array> <array>
<integer>6</integer> <integer>6</integer>
</array> </array>
<key>IBSystem Version</key> <key>IBSystem Version</key>
<string>8F46</string> <string>8G32</string>
</dict> </dict>
</plist> </plist>
...@@ -35,10 +35,6 @@ ...@@ -35,10 +35,6 @@
IBOutlet id o_btn_forward; IBOutlet id o_btn_forward;
IBOutlet id o_tab_pageHolder; IBOutlet id o_tab_pageHolder;
IBOutlet id o_wizard_window; IBOutlet id o_wizard_window;
IBOutlet id o_wizardhelp_window;
IBOutlet id o_wh_txt_title;
IBOutlet id o_wh_txt_text;
IBOutlet id o_wh_btn_okay;
IBOutlet id o_playlist_wizard; IBOutlet id o_playlist_wizard;
/* page one ("Hello") */ /* page one ("Hello") */
...@@ -170,7 +166,6 @@ ...@@ -170,7 +166,6 @@
- (IBAction)t6_mrInfo_sap:(id)sender; - (IBAction)t6_mrInfo_sap:(id)sender;
- (IBAction)t67_mrInfo_local:(id)sender; - (IBAction)t67_mrInfo_local:(id)sender;
- (IBAction)t7_selectTrnscdDestFile:(id)sender; - (IBAction)t7_selectTrnscdDestFile:(id)sender;
- (IBAction)wh_closeSheet:(id)sender;
+ (VLCWizard *)sharedInstance; + (VLCWizard *)sharedInstance;
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment