summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/lwparrowstyles.hxx
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-03-08 00:05:32 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-03-08 01:21:25 -0600
commitd634ce9edb6f1df409547715a391ad2eeca99f0c (patch)
tree62a7327a3346bf4a9b70d465315b7a466b03449e /lotuswordpro/source/filter/lwparrowstyles.hxx
parentcoverity#735759 Unchecked dynamic_cast (diff)
downloadcore-d634ce9edb6f1df409547715a391ad2eeca99f0c.tar.gz
core-d634ce9edb6f1df409547715a391ad2eeca99f0c.zip
use 'native' OUString api in lotuswordpro instead of macro and wrappers
Change-Id: Iccb78b59c3de9f29975d10fa4e34232cd3bf2cc3
Diffstat (limited to 'lotuswordpro/source/filter/lwparrowstyles.hxx')
-rw-r--r--lotuswordpro/source/filter/lwparrowstyles.hxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/lotuswordpro/source/filter/lwparrowstyles.hxx b/lotuswordpro/source/filter/lwparrowstyles.hxx
index 4b34f00a378e..32440d055c34 100644
--- a/lotuswordpro/source/filter/lwparrowstyles.hxx
+++ b/lotuswordpro/source/filter/lwparrowstyles.hxx
@@ -72,30 +72,30 @@ void RegisteArrowStyles()
return;
//reversed arrow:
XFArrowStyle *pArrowStyle100 = new XFArrowStyle();
- pArrowStyle100->SetArrowName( A2OUSTR("arrow100") );
- pArrowStyle100->SetViewbox(A2OUSTR("0 0 140 200"));
- pArrowStyle100->SetSVGPath(A2OUSTR("M0 180 L70 0 L140 180 L120 180 L70 30 L20 180 L0 180"));
+ pArrowStyle100->SetArrowName( "arrow100" );
+ pArrowStyle100->SetViewbox("0 0 140 200");
+ pArrowStyle100->SetSVGPath("M0 180 L70 0 L140 180 L120 180 L70 30 L20 180 L0 180");
pXFStyleManager->AddStyle(pArrowStyle100);
//reversed arrow:
XFArrowStyle *pArrowStyle1 = new XFArrowStyle();
- pArrowStyle1->SetArrowName( A2OUSTR("reverse arrow") );
- pArrowStyle1->SetViewbox(A2OUSTR("0 0 140 200"));
- pArrowStyle1->SetSVGPath(A2OUSTR("M0 0 L70 200 L140 0"));
+ pArrowStyle1->SetArrowName( "reverse arrow" );
+ pArrowStyle1->SetViewbox("0 0 140 200");
+ pArrowStyle1->SetSVGPath("M0 0 L70 200 L140 0");
pXFStyleManager->AddStyle(pArrowStyle1);
//reversed concave arrow
XFArrowStyle *pArrowStyle2 = new XFArrowStyle();
- pArrowStyle2->SetArrowName( A2OUSTR("reverse concave arrow") );
- pArrowStyle2->SetViewbox(A2OUSTR("0 0 140 200"));
- pArrowStyle2->SetSVGPath(A2OUSTR("M0 0 L80 200 L160 0 L80 100"));
+ pArrowStyle2->SetArrowName( "reverse concave arrow" );
+ pArrowStyle2->SetViewbox("0 0 140 200");
+ pArrowStyle2->SetSVGPath("M0 0 L80 200 L160 0 L80 100");
pXFStyleManager->AddStyle(pArrowStyle2);
//reversed line arrow
XFArrowStyle *pArrowStyle3 = new XFArrowStyle();
- pArrowStyle3->SetArrowName( A2OUSTR("reverse line arrow") );
- pArrowStyle3->SetViewbox(A2OUSTR("0 0 140 200"));
- pArrowStyle3->SetSVGPath(A2OUSTR("M0 0 L70 200 L140 0L110 0 L70 160 L20 0 L0 0"));
+ pArrowStyle3->SetArrowName( "reverse line arrow" );
+ pArrowStyle3->SetViewbox("0 0 140 200");
+ pArrowStyle3->SetSVGPath("M0 0 L70 200 L140 0L110 0 L70 160 L20 0 L0 0");
pXFStyleManager->AddStyle(pArrowStyle3);
}