summaryrefslogtreecommitdiff
path: root/vcl/unx/kde4/KDESalFrame.cxx
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2011-03-21 16:58:56 +0100
committerLuboš Luňák <l.lunak@suse.cz>2011-03-21 16:58:56 +0100
commit450f5a90f5256845bb919e97833ebceccbdb462e (patch)
tree9b3ca0f903bb7007dbdfadc5da3a9b1989ca2f8e /vcl/unx/kde4/KDESalFrame.cxx
parent17da3432027028279a454be66f371c20cbcebdc6 (diff)
remove unused function
Diffstat (limited to 'vcl/unx/kde4/KDESalFrame.cxx')
-rw-r--r--vcl/unx/kde4/KDESalFrame.cxx7
1 files changed, 0 insertions, 7 deletions
diff --git a/vcl/unx/kde4/KDESalFrame.cxx b/vcl/unx/kde4/KDESalFrame.cxx
index e7a510e11f8d..55d78b81e0fc 100644
--- a/vcl/unx/kde4/KDESalFrame.cxx
+++ b/vcl/unx/kde4/KDESalFrame.cxx
@@ -87,13 +87,6 @@ static OUString readEntryUntranslated( KConfigGroup *pGroup, const char *pKey )
return OUString::createFromAscii( (const char *) pGroup->readEntryUntranslated( pKey ).toAscii() );
}
-/** Helper function to read color from KConfig configuration repository.
-*/
-static Color readColor( KConfigGroup *pGroup, const char *pKey )
-{
- return toColor( pGroup->readEntry( pKey, QColor(Qt::white) ) );
-}
-
/** Helper function to add information to Font from QFont.
Mostly grabbed from the Gtk+ vclplug (salnativewidgets-gtk.cxx).