summaryrefslogtreecommitdiffstats
path: root/sw/source/uibase/utlui/content.cxx
diff options
context:
space:
mode:
authorBrij Mohan Lal Srivastava <contactbrijmohan@gmail.com>2014-11-12 14:24:10 +0530
committerStephan Bergmann <sbergman@redhat.com>2014-11-14 09:20:38 +0100
commitd32be3ace8c8fd430bbecdf69f88a116b0ee91d1 (patch)
treeb373c084cb124434e0498867b24bc7bb333155dd /sw/source/uibase/utlui/content.cxx
parentSilence winsock deprecation warning (diff)
downloadcore-d32be3ace8c8fd430bbecdf69f88a116b0ee91d1.tar.gz
core-d32be3ace8c8fd430bbecdf69f88a116b0ee91d1.zip
fdo#86023 - O[U]String needs a 'clear' method
Added clear() method to OString and OUString class, Updated appropriate call-sites. Change-Id: I0ba97fa6dc7af3e31b605953089a4e8e9c3e61ac Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sw/source/uibase/utlui/content.cxx')
-rw-r--r--sw/source/uibase/utlui/content.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/uibase/utlui/content.cxx b/sw/source/uibase/utlui/content.cxx
index f1f96e04952d..2402fd3c56c7 100644
--- a/sw/source/uibase/utlui/content.cxx
+++ b/sw/source/uibase/utlui/content.cxx
@@ -264,7 +264,7 @@ void SwContentType::Init(bool* pbInvalidateWindow)
pMarkAccess->getBookmarksBegin(),
pMarkAccess->getBookmarksEnd(),
&lcl_IsUiVisibleBookmark));
- sTypeToken = OUString();
+ sTypeToken.clear();
bEdit = true;
}
break;
@@ -406,14 +406,14 @@ void SwContentType::Init(bool* pbInvalidateWindow)
}
}
}
- sTypeToken = OUString();
+ sTypeToken.clear();
bEdit = true;
nOldMemberCount = nMemberCount;
}
break;
case CONTENT_TYPE_DRAWOBJECT:
{
- sTypeToken = OUString();
+ sTypeToken.clear();
nMemberCount = 0;
SwDrawModel* pModel = pWrtShell->getIDocumentDrawModelAccess()->GetDrawModel();
if(pModel)