diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2022-09-25 12:44:38 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2022-09-25 12:44:38 +0800 |
commit | 51d626185dd74d76eadcd1a423189e366920396b (patch) | |
tree | ed5eb3cab53abdb1efb8ded717bb9408ae5100eb | |
parent | 18508ea004a66cc30c42c43d14afdc16b2267666 (diff) |
Rename namespace to QInterchange
to prevent ambiguity
-rw-r--r-- | admin.cxx | 2 | ||||
-rw-r--r-- | catalog.cxx | 2 | ||||
-rw-r--r-- | interchange.cxx | 2 | ||||
-rw-r--r-- | interchange.hxx | 2 | ||||
-rw-r--r-- | interchange/admin.hxx | 2 | ||||
-rw-r--r-- | interchange/catalog.hxx | 2 | ||||
-rw-r--r-- | interchange/member.hxx | 2 | ||||
-rw-r--r-- | interchange/ord.hxx | 2 | ||||
-rw-r--r-- | interchange/product.hxx | 2 | ||||
-rw-r--r-- | member.cxx | 2 | ||||
-rw-r--r-- | ord.cxx | 2 |
11 files changed, 11 insertions, 11 deletions
@@ -2,7 +2,7 @@ #include <interchange/admin.h> #include "interchange/admin.hxx" -namespace Interchange { +namespace QInterchange { static char *unCopy, *pwCopy; diff --git a/catalog.cxx b/catalog.cxx index 244544c..b971525 100644 --- a/catalog.cxx +++ b/catalog.cxx @@ -1,7 +1,7 @@ #include <cstddef> #include "interchange/catalog.hxx" -namespace Interchange { +namespace QInterchange { Catalog::Catalog(struct interchange_catalog* catalog, QObject* parent) : QAbstractListModel{parent}, diff --git a/interchange.cxx b/interchange.cxx index 6886ba9..5a574e0 100644 --- a/interchange.cxx +++ b/interchange.cxx @@ -1,7 +1,7 @@ #include "interchange.hxx" #include "interchange/ord.hxx" -namespace Interchange { +namespace QInterchange { static Interchange* interchange; diff --git a/interchange.hxx b/interchange.hxx index e25a32c..37b7f5f 100644 --- a/interchange.hxx +++ b/interchange.hxx @@ -4,7 +4,7 @@ #include <QObject> #include "interchange/catalog.hxx" -namespace Interchange { +namespace QInterchange { class Ord; diff --git a/interchange/admin.hxx b/interchange/admin.hxx index 3a800ac..34597c2 100644 --- a/interchange/admin.hxx +++ b/interchange/admin.hxx @@ -6,7 +6,7 @@ struct interchange_admin; -namespace Interchange { +namespace QInterchange { class Admin : public QObject { diff --git a/interchange/catalog.hxx b/interchange/catalog.hxx index 8946113..8204d6b 100644 --- a/interchange/catalog.hxx +++ b/interchange/catalog.hxx @@ -6,7 +6,7 @@ struct interchange_catalog; -namespace Interchange { +namespace QInterchange { class Catalog : public QAbstractListModel { diff --git a/interchange/member.hxx b/interchange/member.hxx index d4b1836..bd569c6 100644 --- a/interchange/member.hxx +++ b/interchange/member.hxx @@ -6,7 +6,7 @@ struct interchange_member; -namespace Interchange { +namespace QInterchange { class Member : public QObject { diff --git a/interchange/ord.hxx b/interchange/ord.hxx index afe77cc..5b14d96 100644 --- a/interchange/ord.hxx +++ b/interchange/ord.hxx @@ -6,7 +6,7 @@ #include "member.hxx" #include "product.hxx" -namespace Interchange { +namespace QInterchange { struct Item { diff --git a/interchange/product.hxx b/interchange/product.hxx index a7f3587..483ee42 100644 --- a/interchange/product.hxx +++ b/interchange/product.hxx @@ -3,7 +3,7 @@ #include <interchange.h> -namespace Interchange { +namespace QInterchange { struct Product { @@ -2,7 +2,7 @@ #include <interchange/member.h> #include "interchange/member.hxx" -namespace Interchange { +namespace QInterchange { static char *unCopy, *pwCopy; @@ -2,7 +2,7 @@ #include <memory> #include "interchange/ord.hxx" -namespace Interchange { +namespace QInterchange { int Ord::rowCount(QModelIndex const& parent) const { |