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

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFelix Geyer <debfx@fobos.de>2012-01-06 18:49:52 +0400
committerFelix Geyer <debfx@fobos.de>2012-01-06 18:49:52 +0400
commitfea148803c583351ea309b7b13e5e780033962a2 (patch)
treebcdeea2fc837a39c10333bb3f02fcdedd67992fc /src
parent50e5b247405d64de0b89a1f9bca15f592182c4b4 (diff)
Rename getPath() -> path().
Diffstat (limited to 'src')
-rw-r--r--src/core/DataPath.cpp2
-rw-r--r--src/core/DataPath.h2
-rw-r--r--src/core/DatabaseIcons.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/core/DataPath.cpp b/src/core/DataPath.cpp
index e902d4fb6..214083cd0 100644
--- a/src/core/DataPath.cpp
+++ b/src/core/DataPath.cpp
@@ -22,7 +22,7 @@
#include "config-keepassx.h"
-QString DataPath::getPath(const QString& name)
+QString DataPath::path(const QString& name)
{
return m_basePath + name;
}
diff --git a/src/core/DataPath.h b/src/core/DataPath.h
index 98e45832e..758cb8bc1 100644
--- a/src/core/DataPath.h
+++ b/src/core/DataPath.h
@@ -24,7 +24,7 @@
class DataPath
{
public:
- QString getPath(const QString& name);
+ QString path(const QString& name);
QIcon applicationIcon();
private:
diff --git a/src/core/DatabaseIcons.cpp b/src/core/DatabaseIcons.cpp
index 3d5ddd3d2..a2301e060 100644
--- a/src/core/DatabaseIcons.cpp
+++ b/src/core/DatabaseIcons.cpp
@@ -31,7 +31,7 @@ QImage DatabaseIcons::icon(int index)
}
else {
QString iconPath = QString("icons/database/").append(m_indexToName.at(index));
- QImage icon(dataPath()->getPath(iconPath));
+ QImage icon(dataPath()->path(iconPath));
m_iconCache[index] = icon;
return icon;