Fix non-static, non-initialized member fProcessID CID 9946; Remove non-used fLockFlag, set un-initilized fSavedAttr member, CID 9945; fixed a few extra spaces

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40765 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Alexander von Gluck IV 2011-03-01 18:42:18 +00:00
parent 1c9368988e
commit f02c85adba
3 changed files with 5 additions and 5 deletions

View File

@ -126,6 +126,7 @@ typedef struct
Shell::Shell()
:
fFd(-1),
fProcessID(-1),
fTermParse(NULL),
fAttached(false)
{

View File

@ -70,6 +70,7 @@ TermParse::TermParse(int fd)
:
fFd(fd),
fAttr(FORECOLORED(7)),
fSavedAttr(FORECOLORED(7)),
fParseThread(-1),
fReaderThread(-1),
fReaderSem(-1),

View File

@ -54,7 +54,7 @@ public:
status_t StartThreads(TerminalBuffer *view);
status_t StopThreads();
private:
inline uchar _NextParseChar();
@ -99,12 +99,10 @@ private:
uchar fParserBuffer[ESC_PARSER_BUFFER_SIZE];
int32 fParserBufferSize;
int32 fParserBufferOffset;
int fLockFlag;
TerminalBuffer *fBuffer;
bool fQuitting;
bool fQuitting;
};
#endif // TERMPARSE_H