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
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/Entry.h')
-rw-r--r--src/core/Entry.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/Entry.h b/src/core/Entry.h
index 5147fbcf9..b14a3fdf3 100644
--- a/src/core/Entry.h
+++ b/src/core/Entry.h
@@ -49,6 +49,7 @@ public:
QColor foregroundColor() const;
QColor backgroundColor() const;
QString overrideUrl() const;
+ QString tags() const;
TimeInfo timeInfo() const;
bool autoTypeEnabled() const;
int autoTypeObfuscation() const;
@@ -68,6 +69,7 @@ public:
void setForegroundColor(const QColor& color);
void setBackgroundColor(const QColor& color);
void setOverrideUrl(const QString& url);
+ void setTags(const QString& tags);
void setTimeInfo(const TimeInfo& timeInfo);
void setAutoTypeEnabled(bool enable);
void setAutoTypeObfuscation(int obfuscation);
@@ -98,6 +100,7 @@ private:
QColor m_foregroundColor;
QColor m_backgroundColor;
QString m_overrideUrl;
+ QString m_tags;
TimeInfo m_timeInfo;
bool m_autoTypeEnabled;
int m_autoTypeObfuscation;