summaryrefslogtreecommitdiff
path: root/include/svtools/templatefoldercache.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-03-01 08:30:03 +0200
committerNoel Grandin <noel@peralex.com>2016-03-01 08:30:28 +0200
commit40971354138e14a2aacfa4605ba0c096e000d578 (patch)
treeb5812c6265a3900bd2cf47304ab1e470b3b953c5 /include/svtools/templatefoldercache.hxx
parent5e913234da65484778d53179ee2005aec01d0f0e (diff)
loplugin:unuseddefaultparam in svtools
Change-Id: I4e9712bea0cc8cf2d48759738806a584dda8268e
Diffstat (limited to 'include/svtools/templatefoldercache.hxx')
-rw-r--r--include/svtools/templatefoldercache.hxx15
1 files changed, 3 insertions, 12 deletions
diff --git a/include/svtools/templatefoldercache.hxx b/include/svtools/templatefoldercache.hxx
index 886a731ca49f..842f19111b99 100644
--- a/include/svtools/templatefoldercache.hxx
+++ b/include/svtools/templatefoldercache.hxx
@@ -75,22 +75,13 @@ namespace svt
~TemplateFolderCache( );
/** determines whether or not the template configuration needs to be updated
- @param _bForceCheck
- set this to <TRUE/> if you want the object to rescan the template folders in every case. The default (<FALSE/>)
- means that once the information has been retrieved in a first call, every second call returns the same result
- as the first one, even if in the meantime the template folders changed.
@return
<TRUE/> if the template configuration needs to be updated
*/
- bool needsUpdate( bool _bForceCheck = false );
+ bool needsUpdate();
- /** stores the current state of the template folders in the cache
- @param _bForceRetrieval
- if set to <TRUE/>, the current state of the template folders is retrieved again, even if it is already known.
- Usually, you set this to <FALSE/>: After calling <method>needsUpdate</method>, the state is know and does not
- need to be read again.
- */
- void storeState( bool _bForceRetrieval = false );
+ /** stores the current state of the template folders in the cache */
+ void storeState();
};