summaryrefslogtreecommitdiff
path: root/src/lib/xdgentries.h
diff options
context:
space:
mode:
authorFabien Proriol <fabien.proriol@kazoe.org>2025-05-25 17:02:01 +0200
committerFabien Proriol <fabien.proriol@kazoe.org>2025-05-26 16:35:23 +0200
commit5f85571d52e9f82486a379d017eb36eda2a9f30e (patch)
tree3a2ef9cfea0bdbb4872be48f2eb010d730937a90 /src/lib/xdgentries.h
parent1dbc0e3c88ba271ba35bc3f82e7864c4f35e1236 (diff)
Change module to org.kazoe.xdg
Diffstat (limited to 'src/lib/xdgentries.h')
-rw-r--r--src/lib/xdgentries.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/xdgentries.h b/src/lib/xdgentries.h
index fd0458a..587d67a 100644
--- a/src/lib/xdgentries.h
+++ b/src/lib/xdgentries.h
@@ -5,7 +5,7 @@
#include <QFileSystemWatcher>
#include <QMap>
-namespace xdg {
+namespace KaZoe {
class Entry;
class Entries : public QObject
@@ -13,7 +13,7 @@ namespace xdg {
Q_OBJECT
QString m_type;
QFileSystemWatcher m_watcher;
- QMap<QString, xdg::Entry*> m_entries;
+ QMap<QString, KaZoe::Entry*> m_entries;
private slots:
void _directoryChanged(const QString &path);
@@ -26,7 +26,7 @@ namespace xdg {
int addDirectory(const QString &path, bool replace = false);
qsizetype count() const;
const Entry *getEntry(int i) const;
- QList<xdg::Entry *> getEntries();
+ QList<KaZoe::Entry *> getEntries();
signals:
void entryDataChanged(const QString appid, const QString key, const QString value);