summaryrefslogtreecommitdiffstats
path: root/include/store
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-05-16 10:11:04 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-05-18 10:03:44 +0000
commit2c8fe2e737b84ecd3dbac36a4fe6bd061bbd3bae (patch)
tree66ba7ff0b95cf5ceeda5e53294a71c6786460eb3 /include/store
parentadd D.M.Y date pattern to Gaelic [gd-GB] (diff)
downloadcore-2c8fe2e737b84ecd3dbac36a4fe6bd061bbd3bae.tar.gz
core-2c8fe2e737b84ecd3dbac36a4fe6bd061bbd3bae.zip
update unusedmethods plugin to deal with constructors
and fix the operator< implementations in some of the other plugins too. Change-Id: Ie5631e0cdc8d2a994ad2af2533cdb558a6cfc035 Reviewed-on: https://gerrit.libreoffice.org/25057 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/store')
-rw-r--r--include/store/store.hxx27
1 files changed, 0 insertions, 27 deletions
diff --git a/include/store/store.hxx b/include/store/store.hxx
index 5800169bb70b..1aa19b58825f 100644
--- a/include/store/store.hxx
+++ b/include/store/store.hxx
@@ -72,15 +72,6 @@ public:
return *this;
}
- /** Construction from Stream Handle.
- */
- inline explicit OStoreStream (storeStreamHandle Handle)
- : m_hImpl (Handle)
- {
- if (m_hImpl)
- (void) store_acquireHandle (m_hImpl);
- }
-
/** Open the stream.
@see store_openStream()
*/
@@ -177,15 +168,6 @@ public:
return *this;
}
- /** Construction from Directory Handle.
- */
- inline explicit OStoreDirectory (storeDirectoryHandle Handle)
- : m_hImpl (Handle)
- {
- if (m_hImpl)
- (void) store_acquireHandle (m_hImpl);
- }
-
/** Open the directory.
@see store_openDirectory()
*/
@@ -280,15 +262,6 @@ public:
return *this;
}
- /** Construction from File Handle.
- */
- inline explicit OStoreFile (storeFileHandle Handle)
- : m_hImpl (Handle)
- {
- if (m_hImpl)
- (void) store_acquireHandle (m_hImpl);
- }
-
/** Conversion into File Handle.
*/
inline operator storeFileHandle() const