mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 21:17:44 +00:00
WindowServer: Rename WindowManager wm_config() to config()
It looked a little silly with all of the callers saying wm.wm
This commit is contained in:
parent
d3eccf0409
commit
195c1784ba
3 changed files with 22 additions and 25 deletions
|
@ -81,10 +81,7 @@ public:
|
|||
|
||||
Palette palette() const { return Palette(*m_palette); }
|
||||
|
||||
RefPtr<Core::ConfigFile> wm_config() const
|
||||
{
|
||||
return m_wm_config;
|
||||
}
|
||||
RefPtr<Core::ConfigFile> config() const { return m_config; }
|
||||
void reload_config(bool);
|
||||
|
||||
void add_window(Window&);
|
||||
|
@ -279,7 +276,7 @@ private:
|
|||
|
||||
NonnullRefPtr<Gfx::PaletteImpl> m_palette;
|
||||
|
||||
RefPtr<Core::ConfigFile> m_wm_config;
|
||||
RefPtr<Core::ConfigFile> m_config;
|
||||
|
||||
WeakPtr<ClientConnection> m_dnd_client;
|
||||
String m_dnd_text;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue