Fixed code style

This commit is contained in:
XinyuHou 2015-04-14 14:04:54 +01:00
parent f60e98c8cd
commit fa1ea0022b
1 changed files with 18 additions and 16 deletions

View File

@ -24,25 +24,27 @@ class ArgsBase {
public: public:
ArgsBase(); ArgsBase();
virtual ~ArgsBase(); virtual ~ArgsBase();
bool m_daemon;
bool m_backend; public:
bool m_restartable; bool m_daemon;
bool m_noHooks; bool m_backend;
const char* m_pname; bool m_restartable;
const char* m_logFilter; bool m_noHooks;
const char* m_logFile; const char* m_pname;
const char* m_display; const char* m_logFilter;
String m_name; const char* m_logFile;
bool m_disableTray; const char* m_display;
bool m_enableIpc; String m_name;
bool m_enableDragDrop; bool m_disableTray;
bool m_enableIpc;
bool m_enableDragDrop;
#if SYSAPI_WIN32 #if SYSAPI_WIN32
bool m_debugServiceWait; bool m_debugServiceWait;
bool m_pauseOnExit; bool m_pauseOnExit;
bool m_stopOnDeskSwitch; bool m_stopOnDeskSwitch;
#endif #endif
#if WINAPI_XWINDOWS #if WINAPI_XWINDOWS
bool m_disableXInitThreads; bool m_disableXInitThreads;
#endif #endif
bool m_shouldExit; bool m_shouldExit;
String m_synergyAddress; String m_synergyAddress;