summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-04-02 14:07:31 +0200
committerNoel Grandin <noel@peralex.com>2015-04-07 10:24:54 +0200
commitd1b27a1d9af27c0447d4eb1c8d5864b5028d7746 (patch)
tree7f551a3eb69040d674bf5b52b0405b897b23324f /ucb
parente4688a3d41265946007c6c9a5c5b5742078c74a3 (diff)
loplugin:staticmethods
Change-Id: Id3d6b50e07ea0850af18ab9bdadfffe0e4602aab
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/cacher/cachedcontentresultsetstub.hxx6
-rw-r--r--ucb/source/sorter/sortresult.hxx16
2 files changed, 11 insertions, 11 deletions
diff --git a/ucb/source/cacher/cachedcontentresultsetstub.hxx b/ucb/source/cacher/cachedcontentresultsetstub.hxx
index f99b1affde36..c4e46cfe7faa 100644
--- a/ucb/source/cacher/cachedcontentresultsetstub.hxx
+++ b/ucb/source/cacher/cachedcontentresultsetstub.hxx
@@ -63,21 +63,21 @@ private:
sal_Int32 SAL_CALL
impl_getColumnCount();
- void SAL_CALL
+ static void SAL_CALL
impl_getCurrentContentIdentifierString(
com::sun::star::uno::Any& rAny
, com::sun::star::uno::Reference<
com::sun::star::ucb::XContentAccess > xContentAccess )
throw ( com::sun::star::uno::RuntimeException );
- void SAL_CALL
+ static void SAL_CALL
impl_getCurrentContentIdentifier(
com::sun::star::uno::Any& rAny
, com::sun::star::uno::Reference<
com::sun::star::ucb::XContentAccess > xContentAccess )
throw ( com::sun::star::uno::RuntimeException );
- void SAL_CALL
+ static void SAL_CALL
impl_getCurrentContent(
com::sun::star::uno::Any& rAny
, com::sun::star::uno::Reference<
diff --git a/ucb/source/sorter/sortresult.hxx b/ucb/source/sorter/sortresult.hxx
index 7e51e7f9caec..a225fb969862 100644
--- a/ucb/source/sorter/sortresult.hxx
+++ b/ucb/source/sorter/sortresult.hxx
@@ -136,28 +136,28 @@ class SortedResultSet: public cppu::WeakImplHelper8 <
SortedEntryList maS2O; // maps the sorted entries to the original ones
SimpleList maO2S; // maps the original Entries to the sorted ones
SimpleList maModList; // keeps track of modified entries
- sal_IntPtr mnLastSort; // index of the last sorted entry;
- sal_IntPtr mnCurEntry; // index of the current entry
- sal_IntPtr mnCount; // total count of the elements
- bool mbIsCopy;
+ sal_IntPtr mnLastSort; // index of the last sorted entry;
+ sal_IntPtr mnCurEntry; // index of the current entry
+ sal_IntPtr mnCount; // total count of the elements
+ bool mbIsCopy;
private:
- sal_IntPtr FindPos( SortListData *pEntry, sal_IntPtr nStart, sal_IntPtr nEnd )
+ sal_IntPtr FindPos( SortListData *pEntry, sal_IntPtr nStart, sal_IntPtr nEnd )
throw( css::sdbc::SQLException, css::uno::RuntimeException );
- sal_IntPtr Compare( SortListData *pOne,
+ sal_IntPtr Compare( SortListData *pOne,
SortListData *pTwo )
throw( css::sdbc::SQLException, css::uno::RuntimeException );
void BuildSortInfo( css::uno::Reference< css::sdbc::XResultSet > aResult,
const css::uno::Sequence < css::ucb::NumberedSortingInfo > &xSortInfo,
const css::uno::Reference< css::ucb::XAnyCompareFactory > &xCompFac );
- sal_IntPtr CompareImpl( css::uno::Reference < css::sdbc::XResultSet > xResultOne,
+ static sal_IntPtr CompareImpl( css::uno::Reference < css::sdbc::XResultSet > xResultOne,
css::uno::Reference < css::sdbc::XResultSet > xResultTwo,
sal_IntPtr nIndexOne, sal_IntPtr nIndexTwo,
SortInfo* pSortInfo )
throw( css::sdbc::SQLException, css::uno::RuntimeException );
- sal_IntPtr CompareImpl( css::uno::Reference < css::sdbc::XResultSet > xResultOne,
+ sal_IntPtr CompareImpl( css::uno::Reference < css::sdbc::XResultSet > xResultOne,
css::uno::Reference < css::sdbc::XResultSet > xResultTwo,
sal_IntPtr nIndexOne, sal_IntPtr nIndexTwo )
throw( css::sdbc::SQLException, css::uno::RuntimeException );