summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-08-26 22:24:36 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-08-27 08:00:32 +0200
commita6050c32f30796743f9ab9b2a5c793ced9b8f747 (patch)
treea2fa6d05708d1c99414893064adaee56460ac728 /svtools
parent01ed4bf52db701c4e7824f4a92b5a3afa2a5ca4b (diff)
Clean up aEmpty
Change-Id: I4c4294b7fb1cb537ba3ae3e6e7e747a3333b7469
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/control/inettbc.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/svtools/source/control/inettbc.cxx b/svtools/source/control/inettbc.cxx
index c0753a61047a..cd04a853279c 100644
--- a/svtools/source/control/inettbc.cxx
+++ b/svtools/source/control/inettbc.cxx
@@ -694,7 +694,7 @@ void SvtMatchContext_Impl::doExecute()
bool bFull = false;
INetURLObject aCurObj;
- OUString aEmpty, aCurString, aCurMainURL;
+ OUString aCurString, aCurMainURL;
INetURLObject aObj;
aObj.SetSmartProtocol( eSmartProt == INetProtocol::NotValid ? INetProtocol::Http : eSmartProt );
for( ;; )
@@ -735,9 +735,9 @@ void SvtMatchContext_Impl::doExecute()
aMatch = aCurObj.GetMainURL( INetURLObject::NO_DECODE );
else
{
- aCurObj.SetMark( aEmpty );
- aCurObj.SetParam( aEmpty );
- aCurObj.SetURLPath( aEmpty );
+ aCurObj.SetMark( "" );
+ aCurObj.SetParam( "" );
+ aCurObj.SetURLPath( "" );
aMatch = aCurObj.GetMainURL( INetURLObject::NO_DECODE );
}
@@ -754,9 +754,9 @@ void SvtMatchContext_Impl::doExecute()
aMatch = aCurObj.GetMainURL( INetURLObject::NO_DECODE );
else
{
- aCurObj.SetMark( aEmpty );
- aCurObj.SetParam( aEmpty );
- aCurObj.SetURLPath( aEmpty );
+ aCurObj.SetMark( "" );
+ aCurObj.SetParam( "" );
+ aCurObj.SetURLPath( "" );
aMatch = aCurObj.GetMainURL( INetURLObject::NO_DECODE );
}