View | Details | Raw Unified | Return to issue 51772
Collapse All | Expand All

(-)svx/inc/numitem.hxx (-2 / +1 lines)
Line 284 Link Here
284
	String 					MakeNumString( const SvxNodeNum&, BOOL bInclStrings = TRUE ) const;
284
	String 					MakeNumString( const SvxNodeNum&, BOOL bInclStrings = TRUE, BOOL bRTL = FALSE ) const;
285
--
(-)svx/source/items/numitem.cxx (-5 / +10 lines)
Line 893 Link Here
893
String 	SvxNumRule::MakeNumString( const SvxNodeNum& rNum, BOOL bInclStrings ) const
893
String 	SvxNumRule::MakeNumString( const SvxNodeNum& rNum, BOOL bInclStrings, BOOL bRTL ) const
894
--
Lines 944-945 Link Here
944
			aStr.Insert( rMyNFmt.GetPrefix(), 0 );
944
			if (bRTL) 
945
			aStr += rMyNFmt.GetSuffix();
945
				aStr.Insert( rMyNFmt.GetSuffix(), 0 ) ;
946
--
946
			else
947
				aStr.Insert( rMyNFmt.GetPrefix(), 0 );
948
949
			if (bRTL)
950
				aStr += rMyNFmt.GetPrefix(); 
951
			else
952
				aStr += rMyNFmt.GetSuffix();
(-)svx/source/outliner/outliner.cxx (-8 / +10 lines)
Line 1060 Link Here
1060
                        aTextPos.X() = rStartPos.X() + GetPaperSize().Width() - aBulletArea.Left();
1060
                        aTextPos.X() = rStartPos.X() + GetPaperSize().Width() - aBulletArea.Right() + aBulletArea.Left() ;
1061
--
Lines 1095-1096 Link Here
1095
                    if ( bRightToLeftPara )
1096
                        nLayoutMode |= TEXT_LAYOUT_BIDI_RTL;
Line 2205 Link Here
2205
			aBulletText += pFmt->GetPrefix();
2203
        		BOOL bRightToLeftPara = pEditEngine->IsRightToLeft( nPara );
2206
--
2204
                    	if ( bRightToLeftPara )
2205
				aBulletText += pFmt->GetSuffix();
2206
			else
2207
				aBulletText += pFmt->GetPrefix();
Line 2217 Link Here
2217
			aBulletText += pFmt->GetSuffix();
2219
                    	if ( bRightToLeftPara )
2218
--
2220
				aBulletText += pFmt->GetPrefix();
2221
			else
2222
				aBulletText += pFmt->GetSuffix();

Return to issue 51772