diff options
author | Noel Grandin <noel@peralex.com> | 2013-09-02 11:40:43 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-09-05 08:54:21 +0200 |
commit | 830171ff79c6a15711c8ca225911d19c90952343 (patch) | |
tree | df7f035c87c3bf31ca478d25f204b427e9e0b87c /sd | |
parent | aceaa880115bb55391a8cc3622970b74436139d0 (diff) |
convert include/svx/svdoole2.hxx from String to OUString
Change-Id: I4241d14165aa585aa436a28071036774012a266f
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/core/sdpage.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/core/sdpage.cxx b/sd/source/core/sdpage.cxx index 66f3eae8af46..5c431fc91262 100644 --- a/sd/source/core/sdpage.cxx +++ b/sd/source/core/sdpage.cxx @@ -1459,10 +1459,10 @@ void findAutoLayoutShapesImpl( SdPage& rPage, const LayoutDescriptor& rDescripto { if( ((eKind == PRESOBJ_CHART) && - ( pOle2->GetProgName().EqualsAscii( "StarChart" ) || pOle2->IsChart() ) ) + ( pOle2->GetProgName() == "StarChart" || pOle2->IsChart() ) ) || ((eKind == PRESOBJ_CALC) && - ( pOle2->GetProgName().EqualsAscii( "StarCalc" ) || pOle2->IsCalc() ) ) ) + ( pOle2->GetProgName() == "StarCalc" || pOle2->IsCalc() ) ) ) { bFound = true; } |