summaryrefslogtreecommitdiffstats
path: root/opensuse/tdebase/xcursor.diff
diff options
context:
space:
mode:
authorRobert Xu <robxu9@gmail.com>2011-11-10 18:04:39 -0500
committerRobert Xu <robxu9@gmail.com>2011-11-10 18:04:39 -0500
commit21fcfa3348213aa87f0e3aef62ca4720c6d31cb7 (patch)
tree2cfb64c59322628e613ed0895e3c3694d3abe6bd /opensuse/tdebase/xcursor.diff
parent8667643bff14a60d8571c599efd3e48bed3e3b12 (diff)
downloadtde-packaging-21fcfa3348213aa87f0e3aef62ca4720c6d31cb7.tar.gz
tde-packaging-21fcfa3348213aa87f0e3aef62ca4720c6d31cb7.zip
initial commit to suse branch: eclipse integration
Diffstat (limited to 'opensuse/tdebase/xcursor.diff')
-rw-r--r--opensuse/tdebase/xcursor.diff36
1 files changed, 0 insertions, 36 deletions
diff --git a/opensuse/tdebase/xcursor.diff b/opensuse/tdebase/xcursor.diff
deleted file mode 100644
index 8c4010915..000000000
--- a/opensuse/tdebase/xcursor.diff
+++ /dev/null
@@ -1,36 +0,0 @@
-Index: kcontrol/input/xcursor/themepage.cpp
-===================================================================
---- kcontrol/input/xcursor/themepage.cpp.orig
-+++ kcontrol/input/xcursor/themepage.cpp
-@@ -73,6 +73,13 @@ struct ThemeInfo {
- };
-
-
-+static QString defaultThemeDescription( const QString& theme )
-+{
-+ if( theme == "redglass" || theme == "whiteglass" || theme == "pseudocore" || theme == "handhelds" )
-+ return i18n( "XFree theme %1 - incomplete for KDE" ).arg( theme );
-+ return i18n( "No description available" );;
-+}
-+
- ThemePage::ThemePage( QWidget* parent, const char* name )
- : QWidget( parent, name ), selectedTheme( NULL ), currentTheme( NULL )
- {
-@@ -333,7 +340,7 @@ void ThemePage::insertTheme( const QStri
-
- // Defaults in case there's no name or comment field.
- QString name = dirName;
-- QString desc = i18n( "No description available" );
-+ QString desc = defaultThemeDescription( name );
- QString sample = "left_ptr";
-
- KSimpleConfig c( path + "/index.theme", true ); // Open read-only
-@@ -480,7 +487,7 @@ void ThemePage::insertThemes()
- // Defaults in case there's no index.theme file or it lacks
- // a name and a comment field.
- QString name = *it;
-- QString desc = i18n( "No description available" );
-+ QString desc = defaultThemeDescription( name );
- QString sample = "left_ptr";
-
- // Parse the index.theme file if the theme has one.