diff options
author | fluxgen <fluxgen> | 2003-04-15 12:14:13 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2003-04-15 12:14:13 (GMT) |
commit | 3797138f9384025285a69b1eb0c57f4cc6f6f1e3 (patch) | |
tree | 260c55f52dc9ef804f6a1a746c67924a740774d3 | |
parent | 80b0f72d3079b38d857a0305f23ca80fdd071a70 (diff) | |
download | fluxbox_pavel-3797138f9384025285a69b1eb0c57f4cc6f6f1e3.zip fluxbox_pavel-3797138f9384025285a69b1eb0c57f4cc6f6f1e3.tar.bz2 |
const accessor for windowstyle
-rw-r--r-- | src/Screen.hh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Screen.hh b/src/Screen.hh index 8be5d42..87a7e90 100644 --- a/src/Screen.hh +++ b/src/Screen.hh | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: Screen.hh,v 1.75 2003/04/15 00:50:24 rathnor Exp $ | 25 | // $Id: Screen.hh,v 1.76 2003/04/15 12:14:13 fluxgen Exp $ |
26 | 26 | ||
27 | #ifndef SCREEN_HH | 27 | #ifndef SCREEN_HH |
28 | #define SCREEN_HH | 28 | #define SCREEN_HH |
@@ -231,6 +231,7 @@ public: | |||
231 | inline void saveClock24Hour(bool c) { resource.clock24hour = c; } | 231 | inline void saveClock24Hour(bool c) { resource.clock24hour = c; } |
232 | 232 | ||
233 | inline Theme::WindowStyle *getWindowStyle() { return &theme->getWindowStyle(); } | 233 | inline Theme::WindowStyle *getWindowStyle() { return &theme->getWindowStyle(); } |
234 | inline const Theme::WindowStyle *getWindowStyle() const { return &theme->getWindowStyle(); } | ||
234 | inline FbWinFrameTheme &winFrameTheme() { return m_windowtheme; } | 235 | inline FbWinFrameTheme &winFrameTheme() { return m_windowtheme; } |
235 | inline const FbWinFrameTheme &winFrameTheme() const { return m_windowtheme; } | 236 | inline const FbWinFrameTheme &winFrameTheme() const { return m_windowtheme; } |
236 | inline FbTk::MenuTheme *menuTheme() { return m_menutheme.get(); } | 237 | inline FbTk::MenuTheme *menuTheme() { return m_menutheme.get(); } |