Code style update

This commit is contained in:
Sanel Zukan
2009-02-24 16:27:38 +00:00
parent bbf6870788
commit 901d0a6071
4 changed files with 49 additions and 48 deletions

View File

@@ -19,29 +19,29 @@
#include "EvokeService.h"
class Splash : public Fl_Double_Window {
private:
StartupItemList* slist;
StartupItemListIter slist_it;
edelib::String* splash_theme;
private:
StartupItemList* slist;
StartupItemListIter slist_it;
edelib::String* splash_theme;
unsigned int counter;
bool show_splash;
bool dryrun;
unsigned int counter;
bool show_splash;
bool dryrun;
Fl_Box* msgbox;
Fl_Box** icons;
Fl_Box* msgbox;
Fl_Box** icons;
public:
Splash(StartupItemList& s, edelib::String& theme, bool show_it, bool dr);
~Splash();
public:
Splash(StartupItemList& s, edelib::String& theme, bool show_it, bool dr);
~Splash();
bool next_client(void);
bool next_client_nosplash(void);
bool next_client(void);
bool next_client_nosplash(void);
void run(void);
void run(void);
#if EDEWM_HAVE_NET_SPLASH
virtual void show(void);
virtual void show(void);
#endif
};