diff options
author | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2012-01-31 14:09:30 -0300 |
---|---|---|
committer | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2012-01-31 14:09:30 -0300 |
commit | f84cd7d1d50ebdbd10c36b7436e17742a9514f67 (patch) | |
tree | 3415d485d89b3f421a735d6adac9578d2dd6330a /libre/kdelibs-libre/fix-knotify-filepath.patch | |
parent | 69baf94c12da619e9b6c3dbb0e2cecad6409e298 (diff) | |
parent | 377f7fff82ea29f7f34ee2b4cce4147029a3b199 (diff) |
Merge branch 'master' of ssh://gparabola/abslibre
Diffstat (limited to 'libre/kdelibs-libre/fix-knotify-filepath.patch')
-rw-r--r-- | libre/kdelibs-libre/fix-knotify-filepath.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libre/kdelibs-libre/fix-knotify-filepath.patch b/libre/kdelibs-libre/fix-knotify-filepath.patch new file mode 100644 index 000000000..2cd995e97 --- /dev/null +++ b/libre/kdelibs-libre/fix-knotify-filepath.patch @@ -0,0 +1,13 @@ +diff --git a/knotify/config/knotifyconfigactionswidget.cpp b/knotify/config/knotifyconfigactionswidget.cpp +index 88d18b6..0e76658 100644 +--- a/knotify/config/knotifyconfigactionswidget.cpp ++++ b/knotify/config/knotifyconfigactionswidget.cpp +@@ -128,7 +128,7 @@ void KNotifyConfigActionsWidget::slotPlay( ) + KUrl soundURL = m_ui.Sound_select->url(); + if ( soundURL.isRelative() ) + { +- QString soundString = soundURL.toLocalFile(); ++ QString soundString = m_ui.Sound_select->text(); + // we need a way to get the application name in order to ba able to do this : + /*QString search = QString("%1/sounds/%2").arg(config->appname).arg(soundFile); + search = KGlobal::mainComponent().dirs()->findResource("data", search); |