const removal

This commit is contained in:
Sanel Zukan 2007-08-22 13:35:41 +00:00
parent e46547e8ef
commit 70ff40b29a

View File

@ -20,7 +20,7 @@
class Splash : public Fl_Double_Window {
private:
const ClientList* clist;
ClientList* clist;
const edelib::String* bkg;
unsigned int counter;
bool no_splash;
@ -39,7 +39,7 @@ class Splash : public Fl_Double_Window {
* NOTE: clients() and set_background() uses address of passed data,
* so make sure passed data does not destroys.
*/
void set_clients(const ClientList* cl) { clist = cl; }
void set_clients(ClientList* cl) { clist = cl; }
void set_background(const edelib::String* s) { bkg = s; }
const ClientList* get_clients(void) const { return clist; }