summaryrefslogtreecommitdiffstats
path: root/sw/inc/istyleaccess.hxx
diff options
context:
space:
mode:
authorAbdulmajeed Al-Abaulrazzaq <aalabdulrazzaq@kacst.edu.sa>2012-09-11 15:16:03 +0300
committerMichael Stahl <mstahl@redhat.com>2012-09-11 17:54:21 +0000
commit4ed62ddb01e4ecff9de01246ea4c040f007c1196 (patch)
treeea75c2b5e5ef8b01d6cc1aafdccc10f29a7e982c /sw/inc/istyleaccess.hxx
parentRemove unnecessary #ifndef guards (diff)
downloadcore-4ed62ddb01e4ecff9de01246ea4c040f007c1196.tar.gz
core-4ed62ddb01e4ecff9de01246ea4c040f007c1196.zip
Modifying comments to meet doxygen standards
Change-Id: I363ce532c7d11e798c2a5cc67b1b7893dcd0a389 Reviewed-on: https://gerrit.libreoffice.org/596 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'sw/inc/istyleaccess.hxx')
-rw-r--r--sw/inc/istyleaccess.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/inc/istyleaccess.hxx b/sw/inc/istyleaccess.hxx
index 0fd66bf85d36..cbd54511b127 100644
--- a/sw/inc/istyleaccess.hxx
+++ b/sw/inc/istyleaccess.hxx
@@ -44,15 +44,15 @@ public:
SwAutoStyleFamily eFamily ) = 0;
virtual void getAllStyles( std::vector<StylePool::SfxItemSet_Pointer_t> &rStyles,
SwAutoStyleFamily eFamily ) = 0;
- // It's slow to iterate through a stylepool looking for a special name, but if
- // the style has been inserted via "cacheAutomaticStyle" instead of "getAutomaticStyle",
- // it's faster
+ /** It's slow to iterate through a stylepool looking for a special name, but if
+ the style has been inserted via "cacheAutomaticStyle" instead of "getAutomaticStyle",
+ it's faster */
virtual StylePool::SfxItemSet_Pointer_t getByName( const rtl::OUString& rName,
SwAutoStyleFamily eFamily ) = 0;
- // insert the style to the pool and the cache (used during import)
+ /// insert the style to the pool and the cache (used during import)
virtual StylePool::SfxItemSet_Pointer_t cacheAutomaticStyle( const SfxItemSet& rSet,
SwAutoStyleFamily eFamily ) = 0;
- // To release the cached styles (shared_pointer!)
+ /// To release the cached styles (shared_pointer!)
virtual void clearCaches() = 0;
};