Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Molkentin <danimo@owncloud.com>2014-11-10 00:30:29 +0300
committerDaniel Molkentin <danimo@owncloud.com>2014-11-10 00:30:29 +0300
commitf2eadacf09482e165d998cc51f119e70cdcb8715 (patch)
tree2443603f1cc61ab1c8bf8453d634ce03bc028227 /src/gui/logbrowser.cpp
parent9ebc41ed6f0edf94e1f38f43de6f6e80b47e14d1 (diff)
Remove "Mirall" from class names
Diffstat (limited to 'src/gui/logbrowser.cpp')
-rw-r--r--src/gui/logbrowser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/logbrowser.cpp b/src/gui/logbrowser.cpp
index 55e3c3c6a..d033f81f1 100644
--- a/src/gui/logbrowser.cpp
+++ b/src/gui/logbrowser.cpp
@@ -118,7 +118,7 @@ LogBrowser::LogBrowser(QWidget *parent) :
connect(showLogWindow, SIGNAL(triggered()), SLOT(close()));
addAction(showLogWindow);
- MirallConfigFile cfg;
+ ConfigFile cfg;
cfg.restoreGeometry(this);
int lines = cfg.maxLogLines();
// qDebug() << "# ## Have " << lines << " Loglines!";
@@ -132,7 +132,7 @@ LogBrowser::~LogBrowser()
void LogBrowser::closeEvent(QCloseEvent *)
{
- MirallConfigFile cfg;
+ ConfigFile cfg;
cfg.saveGeometry(this);
}