diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 18:38:31 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 18:38:31 -0600 |
commit | 17e07ddbce9a9de765d7de9b9bf4c98065e2ab13 (patch) | |
tree | a06c9b8f3a008471a3ebaac5c04717865fa12b5f /ubuntu/precise/tdebase/debian/patches | |
parent | 3788332696481924f6429759709dc79a69c8ba57 (diff) | |
download | tde-packaging-17e07ddbce9a9de765d7de9b9bf4c98065e2ab13.tar.gz tde-packaging-17e07ddbce9a9de765d7de9b9bf4c98065e2ab13.zip |
Fix tdebase FTBFS on Debian and Ubuntu
Diffstat (limited to 'ubuntu/precise/tdebase/debian/patches')
-rw-r--r-- | ubuntu/precise/tdebase/debian/patches/kubuntu_89_new_logout_ui.diff | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ubuntu/precise/tdebase/debian/patches/kubuntu_89_new_logout_ui.diff b/ubuntu/precise/tdebase/debian/patches/kubuntu_89_new_logout_ui.diff index d99e8bf02..baeb8bfd5 100644 --- a/ubuntu/precise/tdebase/debian/patches/kubuntu_89_new_logout_ui.diff +++ b/ubuntu/precise/tdebase/debian/patches/kubuntu_89_new_logout_ui.diff @@ -4,8 +4,8 @@ { setCaption(i18n("Shutdown TDE")); -- bool doUbuntuLogout = KConfigGroup(TDEGlobal::config(), "Shutdown").readBoolEntry("doUbuntuLogout", false); -+ bool doUbuntuLogout = KConfigGroup(TDEGlobal::config(), "Shutdown").readBoolEntry("doUbuntuLogout", true); +- bool doUbuntuLogout = TDEConfigGroup(TDEGlobal::config(), "Shutdown").readBoolEntry("doUbuntuLogout", false); ++ bool doUbuntuLogout = TDEConfigGroup(TDEGlobal::config(), "Shutdown").readBoolEntry("doUbuntuLogout", true); TQFrame* lfrm = new TQFrame( this ); TQHBoxLayout* hbuttonbox; @@ -15,8 +15,8 @@ 2 * KDialog::spacingHint() ); // default factor -- bool doUbuntuLogout = KConfigGroup(TDEGlobal::config(), "Logout").readBoolEntry("doUbuntuLogout", false); -+ bool doUbuntuLogout = KConfigGroup(TDEGlobal::config(), "Logout").readBoolEntry("doUbuntuLogout", true); +- bool doUbuntuLogout = TDEConfigGroup(TDEGlobal::config(), "Logout").readBoolEntry("doUbuntuLogout", false); ++ bool doUbuntuLogout = TDEConfigGroup(TDEGlobal::config(), "Logout").readBoolEntry("doUbuntuLogout", true); // slighty more space for the new logout int factor = 2; |