diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-11-06 07:42:13 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-11-15 08:13:06 +0100 |
commit | 158fbb78cad97787e193cf95832fe26da69e4403 (patch) | |
tree | 63ce489df745629a119ad4142364bccd5cf8670c /dbaccess | |
parent | 3c825bcc483d24bc408f7438d966c79a1f5b084c (diff) |
make some classes module-private
Change-Id: I95845d7217fc5e77e3f8e205030e9cd761ad0cc5
Reviewed-on: https://gerrit.libreoffice.org/82116
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/filter/hsqldb/alterparser.hxx | 2 | ||||
-rw-r--r-- | dbaccess/source/filter/hsqldb/fbalterparser.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/filter/hsqldb/alterparser.hxx b/dbaccess/source/filter/hsqldb/alterparser.hxx index 6f2e3535307e..9b0fb011bb5c 100644 --- a/dbaccess/source/filter/hsqldb/alterparser.hxx +++ b/dbaccess/source/filter/hsqldb/alterparser.hxx @@ -21,7 +21,7 @@ enum class AlterAction IDENTITY_RESTART }; -class SAL_DLLPUBLIC_EXPORT AlterStmtParser +class AlterStmtParser { private: OUString m_sStmt; diff --git a/dbaccess/source/filter/hsqldb/fbalterparser.hxx b/dbaccess/source/filter/hsqldb/fbalterparser.hxx index d8ede453c99c..e1546996ce8a 100644 --- a/dbaccess/source/filter/hsqldb/fbalterparser.hxx +++ b/dbaccess/source/filter/hsqldb/fbalterparser.hxx @@ -14,7 +14,7 @@ namespace dbahsql { -class SAL_DLLPUBLIC_EXPORT FbAlterStmtParser : public AlterStmtParser +class FbAlterStmtParser : public AlterStmtParser { protected: void ensureProperTableLengths() const; |