More StdApp cleanup

stable-5.2
Günther Brammer 2009-08-16 18:30:28 +02:00
parent 1b17ad1808
commit f5b904c3db
4 changed files with 4 additions and 12 deletions

View File

@ -38,9 +38,7 @@
/* CStdApp */
CStdApp::CStdApp(): Active(false), fQuitMsgReceived(false),
Location(""), DoNotDelay(false), MainThread(pthread_self()), fDspModeSet(false),
// 36 FPS
Delay(27777)
Location(""), DoNotDelay(false), MainThread(pthread_self()), fDspModeSet(false)
{
}
@ -211,4 +209,4 @@ bool CStdApp::ReadStdInCommand() {
} else if(isprint((unsigned char)c))
CmdBuf.AppendChar(c);
return true;
}
}

View File

@ -62,9 +62,7 @@ CStdApp::CStdApp(): Active(false), fQuitMsgReceived(false), Priv(new CStdAppPriv
#ifdef HAVE_PTHREAD
MainThread (pthread_self()),
#endif
fDspModeSet(false),
// 36 FPS
Delay(27777)
fDspModeSet(false)
{
}

View File

@ -468,8 +468,6 @@ protected:
class CStdAppPrivate * Priv;
void HandleXMessage();
unsigned int Delay;
timeval LastExecute;
unsigned int KeyMask;
#endif
const char *szCmdLine;

View File

@ -100,9 +100,7 @@ CStdApp::CStdApp(): Active(false), fQuitMsgReceived(false), dpy(0), Priv(new CSt
#ifdef HAVE_PTHREAD
MainThread (pthread_self()),
#endif
fDspModeSet(false),
// 36 FPS
Delay(27777)
fDspModeSet(false)
{
Add(&Priv->X11Proc);
#ifdef WITH_GLIB