diff options
author | Noel Grandin <noel@peralex.com> | 2013-08-23 12:34:38 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-08-29 09:30:02 +0200 |
commit | 7c9188659d0882906ed917d5251d5faaf007a477 (patch) | |
tree | 74b7ab7be808657179820283fdbea0a973051fd1 /basctl | |
parent | 99af8b070c5bff885511b29faf3c9df937297f81 (diff) |
convert include/sfx2/objsh.hxx from String to OUString
Change-Id: I9587190cea24da93ec0496f2eccf0d32d98980ee
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/basicide/basides2.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basctl/source/basicide/basides2.cxx b/basctl/source/basicide/basides2.cxx index 1b096908ecdb..927b670abaff 100644 --- a/basctl/source/basicide/basides2.cxx +++ b/basctl/source/basicide/basides2.cxx @@ -127,7 +127,7 @@ void Shell::SetMDITitle() if ( pViewFrame ) { SfxObjectShell* pShell = pViewFrame->GetObjectShell(); - if ( pShell && !pShell->GetTitle( SFX_TITLE_CAPTION ).Equals(aTitle) ) + if ( pShell && pShell->GetTitle( SFX_TITLE_CAPTION ) != aTitle ) { pShell->SetTitle( aTitle ); pShell->SetModified(false); |