


Oxygen KDE (Firefox Theme)
Various KDE 1.-4. Improvements by jimmy88 1783 comments
This theme totally borked my FF 4.0.1 installation. Doesn't work with All In One Sidebar. Even after removing it the damage is already done. The Stratini Padded theme no longer appears in the theme manager, even though it's the currently selected theme. The main FF windows are retaining the Oxygen styling even though it's been removed. Either take this theme down or at least put a big flashing red warning on it to backup your profile before installing
- May 20 2011
Try applying these patches
--- rdbmanager.cpp 2008-11-27 22:12:46.000000000 +0000
+++ rdbmanager.cpp 2008-11-27 22:14:24.000000000 +0000
@@ -360,7 +360,7 @@
// Gets the rdiff-backup process
KProcess *proc = RDBProcess();
// Adds the options
- *proc << "--remove-older-than" << QString("%1").arg(backup.deleteAfter()) + "D";
+ *proc << "--force" << "--remove-older-than" << QString("%1").arg(backup.deleteAfter()) + "D";
// Adds dest
*proc << backup.dest();
// Starts the process
and
--- rdblistener.cpp 2008-11-27 22:13:01.000000000 +0000
+++ rdblistener.cpp 2008-11-27 22:13:51.000000000 +0000
@@ -27,12 +27,12 @@
void RDBListener::receivedStdErr(KProcess *proc, char *buffer, int buflen)
{
m_isOk = false;
- m_stdErr.append(buffer);
+ m_stdErr.append(QString::fromLatin1(buffer, buflen));
}
void RDBListener::receivedStdOut(KProcess *proc, char *buffer, int buflen)
{
- m_stdOut.append(buffer);
+ m_stdOut.append(QString::fromLatin1(buffer, buflen));
}
QString RDBListener::errorMessage()
- Nov 27 2008
--- rdbmanager.cpp 2008-11-27 22:12:46.000000000 +0000
+++ rdbmanager.cpp 2008-11-27 22:14:24.000000000 +0000
@@ -360,7 +360,7 @@
// Gets the rdiff-backup process
KProcess *proc = RDBProcess();
// Adds the options
- *proc << "--remove-older-than" << QString("%1").arg(backup.deleteAfter()) + "D";
+ *proc << "--force" << "--remove-older-than" << QString("%1").arg(backup.deleteAfter()) + "D";
// Adds dest
*proc << backup.dest();
// Starts the process
and
--- rdblistener.cpp 2008-11-27 22:13:01.000000000 +0000
+++ rdblistener.cpp 2008-11-27 22:13:51.000000000 +0000
@@ -27,12 +27,12 @@
void RDBListener::receivedStdErr(KProcess *proc, char *buffer, int buflen)
{
m_isOk = false;
- m_stdErr.append(buffer);
+ m_stdErr.append(QString::fromLatin1(buffer, buflen));
}
void RDBListener::receivedStdOut(KProcess *proc, char *buffer, int buflen)
{
- m_stdOut.append(buffer);
+ m_stdOut.append(QString::fromLatin1(buffer, buflen));
}
QString RDBListener::errorMessage()
- Nov 27 2008