File tree Expand file tree Collapse file tree 2 files changed +0
-18
lines changed Expand file tree Collapse file tree 2 files changed +0
-18
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,6 @@ namespace Rtt
126
126
IBOutlet NSButton * rememberMyPreferenceAccessoryCheckboxView;
127
127
BOOL relaunchPromptIsOpen;
128
128
BOOL applicationHasBeenInitialized;
129
- BOOL authorizedToLaunch;
130
129
BOOL launchedWithFile;
131
130
BOOL allowLuaExit;
132
131
BOOL fSimulatorWasSuspended;
Original file line number Diff line number Diff line change @@ -1388,10 +1388,7 @@ -(void)applicationWillFinishLaunching:(NSNotification*)aNotification
1388
1388
}
1389
1389
1390
1390
[self checkOpenGLRequirements ];
1391
- #if !defined( Rtt_PROJECTOR )
1392
1391
[self coronaInit: aNotification];
1393
- authorizedToLaunch = NO ;
1394
- #endif // Rtt_PROJECTOR
1395
1392
}
1396
1393
1397
1394
- (void ) startDebugAndOpenPanel
@@ -2123,14 +2120,6 @@ - (BOOL) application:(NSApplication*)theApplication openFile:(NSString*)filepath
2123
2120
{
2124
2121
self.launchedWithFile = YES ;
2125
2122
}
2126
-
2127
- // If the user has not agreed to the license terms or some other critera,
2128
- // we can't let this method bypass the normal startup routine.
2129
- if ( NO == authorizedToLaunch )
2130
- {
2131
- // return YES to prevent any dialog errors
2132
- return YES ;
2133
- }
2134
2123
2135
2124
BOOL isDirectory = YES ;
2136
2125
if ( ! [[NSFileManager defaultManager ] fileExistsAtPath: filepath isDirectory: &isDirectory] )
@@ -3021,12 +3010,6 @@ -(void)alertDidEnd:(NSAlert *)alert returnCode:(int)returnCode contextInfo:(void
3021
3010
3022
3011
-(void )willOpenForBuild:(id )sender
3023
3012
{
3024
- // If we didn't succeed in logging into the build server, bail
3025
- if ( ! authorizedToLaunch )
3026
- {
3027
- return ;
3028
- }
3029
-
3030
3013
fBuildProblemNotified = false ;
3031
3014
}
3032
3015
You can’t perform that action at this time.
0 commit comments