Removed leftovers from sound stuff.

Replaced hardcoded values for screen sizes used by logout dialog with passed values.
Removed spawn_backtrace() function; not used any more.
Some code reordering
This commit is contained in:
Sanel Zukan
2008-09-08 11:09:37 +00:00
parent 12174af67d
commit 65492f45b7
11 changed files with 78 additions and 136 deletions

View File

@@ -22,7 +22,6 @@ class Splash : public Fl_Double_Window {
private:
ClientList* clist;
const edelib::String* bkg;
const edelib::String* sound;
unsigned int counter;
bool no_splash;
bool dry_run;
@@ -42,7 +41,6 @@ class Splash : public Fl_Double_Window {
*/
void set_clients(ClientList* cl) { clist = cl; }
void set_background(const edelib::String* s) { bkg = s; }
void set_sound(const edelib::String* s) { sound = s; }
const ClientList* get_clients(void) const { return clist; }
bool next_client(void);