mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-03-17 08:01:24 +00:00
camel case
This commit is contained in:
parent
b7cfa30f20
commit
7c30ee1f38
2 changed files with 5 additions and 5 deletions
|
@ -52,7 +52,7 @@ typedef enum PCDebuggerOutputType_enum {
|
|||
NSTask *task;
|
||||
NSFileHandle *stdinHandle;
|
||||
NSFileHandle *stdoutHandle;
|
||||
NSFileHandle *error_handle;
|
||||
NSFileHandle *errorHandle;
|
||||
|
||||
NSColor *userInputColor;
|
||||
NSColor *debuggerColor;
|
||||
|
|
|
@ -666,7 +666,7 @@
|
|||
- (void) logErrOut:(NSNotification *)aNotif
|
||||
{
|
||||
NSData *data;
|
||||
NSFileHandle *handle = error_handle;
|
||||
NSFileHandle *handle = errorHandle;
|
||||
|
||||
if ((data = [handle availableData]) && [data length] > 0)
|
||||
{
|
||||
|
@ -754,13 +754,13 @@
|
|||
if(logError)
|
||||
{
|
||||
[task setStandardError: [NSPipe pipe]];
|
||||
error_handle = [[task standardError] fileHandleForReading];
|
||||
[error_handle waitForDataInBackgroundAndNotify];
|
||||
errorHandle = [[task standardError] fileHandleForReading];
|
||||
[errorHandle waitForDataInBackgroundAndNotify];
|
||||
|
||||
[NOTIFICATION_CENTER addObserver:self
|
||||
selector:@selector(logErrOut:)
|
||||
name:NSFileHandleDataAvailableNotification
|
||||
object:error_handle];
|
||||
object:errorHandle];
|
||||
}
|
||||
|
||||
// set up notifications to get data.
|
||||
|
|
Loading…
Reference in a new issue