mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
const removal
This commit is contained in:
parent
e46547e8ef
commit
70ff40b29a
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
class Splash : public Fl_Double_Window {
|
class Splash : public Fl_Double_Window {
|
||||||
private:
|
private:
|
||||||
const ClientList* clist;
|
ClientList* clist;
|
||||||
const edelib::String* bkg;
|
const edelib::String* bkg;
|
||||||
unsigned int counter;
|
unsigned int counter;
|
||||||
bool no_splash;
|
bool no_splash;
|
||||||
@ -39,7 +39,7 @@ class Splash : public Fl_Double_Window {
|
|||||||
* NOTE: clients() and set_background() uses address of passed data,
|
* NOTE: clients() and set_background() uses address of passed data,
|
||||||
* so make sure passed data does not destroys.
|
* 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; }
|
void set_background(const edelib::String* s) { bkg = s; }
|
||||||
|
|
||||||
const ClientList* get_clients(void) const { return clist; }
|
const ClientList* get_clients(void) const { return clist; }
|
||||||
|
Loading…
Reference in New Issue
Block a user