diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-08-12 09:16:31 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-08-12 09:23:52 +0900 |
commit | 12b1d1cda3332a09476f703629fef372c2b06b2a (patch) | |
tree | 8846f4bf1c7d60069e3ed79e22ade2c1aeed5f3f /io | |
parent | cc569401a45e7977aed2aa169b2e2c86d2f06da4 (diff) |
Mark as const
Change-Id: I9277052ee9c6197cef7a46bd8f3ab9c5515c2502
Diffstat (limited to 'io')
-rw-r--r-- | io/source/TextInputStream/TextInputStream.cxx | 2 | ||||
-rw-r--r-- | io/source/TextOutputStream/TextOutputStream.cxx | 2 | ||||
-rw-r--r-- | io/source/acceptor/acceptor.cxx | 2 | ||||
-rw-r--r-- | io/source/connector/connector.cxx | 2 | ||||
-rw-r--r-- | io/source/stm/factreg.cxx | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/io/source/TextInputStream/TextInputStream.cxx b/io/source/TextInputStream/TextInputStream.cxx index 0d6645d7d0ba..a5b6de3bff41 100644 --- a/io/source/TextInputStream/TextInputStream.cxx +++ b/io/source/TextInputStream/TextInputStream.cxx @@ -471,7 +471,7 @@ Sequence< OUString > OTextInputStream::getSupportedServiceNames(void) throw() using namespace io_TextInputStream; -static struct ImplementationEntry g_entries[] = +static const struct ImplementationEntry g_entries[] = { { TextInputStream_CreateInstance, TextInputStream_getImplementationName , diff --git a/io/source/TextOutputStream/TextOutputStream.cxx b/io/source/TextOutputStream/TextOutputStream.cxx index 48db4a93fa00..53487ddb278c 100644 --- a/io/source/TextOutputStream/TextOutputStream.cxx +++ b/io/source/TextOutputStream/TextOutputStream.cxx @@ -271,7 +271,7 @@ Sequence< OUString > OTextOutputStream::getSupportedServiceNames(void) throw() using namespace io_TextOutputStream; -static struct ImplementationEntry g_entries[] = +static const struct ImplementationEntry g_entries[] = { { TextOutputStream_CreateInstance, TextOutputStream_getImplementationName , diff --git a/io/source/acceptor/acceptor.cxx b/io/source/acceptor/acceptor.cxx index bf28d7b359ba..8f94584f921b 100644 --- a/io/source/acceptor/acceptor.cxx +++ b/io/source/acceptor/acceptor.cxx @@ -311,7 +311,7 @@ namespace io_acceptor using namespace io_acceptor; -static struct ImplementationEntry g_entries[] = +static const struct ImplementationEntry g_entries[] = { { acceptor_CreateInstance, acceptor_getImplementationName , diff --git a/io/source/connector/connector.cxx b/io/source/connector/connector.cxx index e6df22775a70..5356f3932b3d 100644 --- a/io/source/connector/connector.cxx +++ b/io/source/connector/connector.cxx @@ -216,7 +216,7 @@ namespace stoc_connector } using namespace stoc_connector; -static struct ImplementationEntry g_entries[] = +static const struct ImplementationEntry g_entries[] = { { connector_CreateInstance, connector_getImplementationName , diff --git a/io/source/stm/factreg.cxx b/io/source/stm/factreg.cxx index 935f2a5c6085..6fb39e7ce0c7 100644 --- a/io/source/stm/factreg.cxx +++ b/io/source/stm/factreg.cxx @@ -34,7 +34,7 @@ using namespace ::com::sun::star::registry; using namespace io_stm; -static struct ImplementationEntry g_entries[] = +static const struct ImplementationEntry g_entries[] = { { OPipeImpl_CreateInstance, OPipeImpl_getImplementationName , |