CCBUG: 229505
svn path=/trunk/KDE/kdebase/apps/; revision=
1128599
/***************************************************************************
- * Copyright (C) 2006-2009 by Peter Penz <peter.penz@gmx.at> *
+ * Copyright (C) 2006-2010 by Peter Penz <peter.penz@gmx.at> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
DolphinDirLister::DolphinDirLister() :
KDirLister()
{
+ setAutoErrorHandlingEnabled(false, 0);
}
DolphinDirLister::~DolphinDirLister()
#include <QFile>
#include <QFileInfo>
+#include <kdebug.h>
+
ViewProperties::ViewProperties(const KUrl& url) :
m_changedProps(false),
m_autoSave(true),
const QLatin1String fileName("/.directory");
- if ((m_filepath.length() < 1) || (!QDir::isAbsolutePath(m_filepath))) {
+ if ((m_filepath.length() < 1) || !QDir::isAbsolutePath(m_filepath)) {
+ kDebug() << "---- using global path: global/.directory";
const QString file = destinationDir("global") + fileName;
m_node = new ViewPropertySettings(KSharedConfig::openConfig(file));
return;