diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-04-14 11:37:22 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-04-14 11:37:22 +0000 |
| commit | 351f1d03315b84887b7532c35bdd8a49bdce1d43 (patch) | |
| tree | fe1b7051d28b77d9934ace86881261099ec532f7 /src/Rootmenu.h | |
| parent | d00ef145828941dc15c31bd7c3fc2f69f29c2955 (diff) | |
Using some references instead of pointers for the menus.
Diffstat (limited to 'src/Rootmenu.h')
| -rw-r--r-- | src/Rootmenu.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Rootmenu.h b/src/Rootmenu.h index 076819f1..63597d33 100644 --- a/src/Rootmenu.h +++ b/src/Rootmenu.h @@ -34,8 +34,8 @@ class BScreen; class Rootmenu : public Basemenu { private: - Openbox *openbox; - BScreen *screen; + Openbox &openbox; + BScreen &screen; protected: @@ -43,7 +43,7 @@ protected: public: - Rootmenu(BScreen *); + Rootmenu(BScreen &); }; |
