summaryrefslogtreecommitdiff
path: root/sw/source/uibase/config/StoredChapterNumbering.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/uibase/config/StoredChapterNumbering.cxx')
-rw-r--r--sw/source/uibase/config/StoredChapterNumbering.cxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/sw/source/uibase/config/StoredChapterNumbering.cxx b/sw/source/uibase/config/StoredChapterNumbering.cxx
index df5388cd4966..4fb902dd6503 100644
--- a/sw/source/uibase/config/StoredChapterNumbering.cxx
+++ b/sw/source/uibase/config/StoredChapterNumbering.cxx
@@ -124,18 +124,18 @@ public:
{
return uno::Any();
}
- SwNumFmt const* pNumFmt(0);
+ SwNumFormat const* pNumFormat(0);
OUString const* pCharStyleName(0);
- pRules->GetNumFmt(nIndex, pNumFmt, pCharStyleName);
- if (!pNumFmt)
+ pRules->GetNumFormat(nIndex, pNumFormat, pCharStyleName);
+ if (!pNumFormat)
{ // the dialog only fills in those levels that are non-default
return uno::Any(); // the export will ignore this level, yay
}
assert(pCharStyleName);
OUString dummy; // pass in empty HeadingStyleName - can't import anyway
uno::Sequence<beans::PropertyValue> const ret(
- SwXNumberingRules::GetPropertiesForNumFmt(
- *pNumFmt, *pCharStyleName, &dummy));
+ SwXNumberingRules::GetPropertiesForNumFormat(
+ *pNumFormat, *pCharStyleName, &dummy));
return uno::makeAny(ret);
}
@@ -154,15 +154,15 @@ public:
static_cast< ::cppu::OWeakObject*>(this), 1);
SolarMutexGuard g;
- SwNumFmt aNumberFormat;
+ SwNumFormat aNumberFormat;
OUString charStyleName;
- SwXNumberingRules::SetPropertiesToNumFmt(
+ SwXNumberingRules::SetPropertiesToNumFormat(
aNumberFormat,
charStyleName,
0, 0, 0, 0, 0,
props);
SwNumRulesWithName *const pRules(GetOrCreateRules());
- pRules->SetNumFmt(nIndex, aNumberFormat, charStyleName);
+ pRules->SetNumFormat(nIndex, aNumberFormat, charStyleName);
}
};
@@ -438,9 +438,9 @@ void ExportStoredChapterNumberingRules(SwChapterNumRules & rRules,
{
for (size_t j = 0; j < MAXLEVEL; ++j)
{
- SwNumFmt const* pDummy(0);
+ SwNumFormat const* pDummy(0);
OUString const* pCharStyleName(0);
- pRule->GetNumFmt(j, pDummy, pCharStyleName);
+ pRule->GetNumFormat(j, pDummy, pCharStyleName);
if (pCharStyleName && !pCharStyleName->isEmpty())
{
charStyles.insert(*pCharStyleName);