From 0df02666023947be6339d18cbf19e7e96e45e1e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Fri, 13 Jan 2012 10:10:47 +0100 Subject: [PATCH] Makes two methods private which are no longer accessed from outside --- clients/aurorae/src/lib/auroraetheme.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/clients/aurorae/src/lib/auroraetheme.h b/clients/aurorae/src/lib/auroraetheme.h index ff92a3e77a..7e3da1c5e9 100644 --- a/clients/aurorae/src/lib/auroraetheme.h +++ b/clients/aurorae/src/lib/auroraetheme.h @@ -167,16 +167,6 @@ public: Qt::Alignment alignment() const; Qt::Alignment verticalAlignment() const; /** - * Sets the borders according to maximized state. - * Borders are global to all windows. - */ - void borders(int &left, int &top, int &right, int &bottom, bool maximized) const; - /** - * Sets the padding according. - * Padding is global to all windows. - */ - void padding(int &left, int &top, int &right, int &bottom) const; - /** * Sets the title edges according to maximized state. * Title edges are global to all windows. */ @@ -225,6 +215,16 @@ Q_SIGNALS: private: const ThemeConfig &themeConfig() const; + /** + * Sets the borders according to maximized state. + * Borders are global to all windows. + */ + void borders(int &left, int &top, int &right, int &bottom, bool maximized) const; + /** + * Sets the padding according. + * Padding is global to all windows. + */ + void padding(int &left, int &top, int &right, int &bottom) const; AuroraeThemePrivate* const d; };