summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-07 21:48:28 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-07 21:50:54 -0500
commitc359057caabdb7740b46f0e45eafaa38d4f40d54 (patch)
tree8af6aa5d4c231170daf668d4f8de30ef2d8542f0
parentc1098677d4c3f93108a3a0d9dd56388f887416c8 (diff)
downloadtdelibs-c359057c.tar.gz
tdelibs-c359057c.zip
Makes favorite URLs in TDE file open/save dialogs global (sared amongst all applications) by default
This commits the following patch from Bug 1499: tdelibs: fix kurlbar global
-rw-r--r--tdeio/tdefile/kurlbar.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tdeio/tdefile/kurlbar.cpp b/tdeio/tdefile/kurlbar.cpp
index 228a2ce42..e4f86fbed 100644
--- a/tdeio/tdefile/kurlbar.cpp
+++ b/tdeio/tdefile/kurlbar.cpp
@@ -94,7 +94,7 @@ KURLBarItem::KURLBarItem( KURLBar *parent,
m_url( url ),
m_pixmap( 0L ),
m_parent( parent ),
- m_appLocal( true )
+ m_appLocal( false )
{
init( icon, group, description, persistent );
}
@@ -106,7 +106,7 @@ KURLBarItem::KURLBarItem( KURLBar *parent,
m_url( url ),
m_pixmap( 0L ),
m_parent( parent ),
- m_appLocal( true )
+ m_appLocal( false )
{
init( icon, group, description, true /*persistent*/ );
}