[PATCH] AppendAscii cleanup

2013-05-20 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/3974

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/74/3974/1

AppendAscii cleanup

Change-Id: I7398272de0bd340ebfb5f31b314d32fcff007eec
---
M extensions/source/bibliography/datman.cxx
M extensions/source/dbpilots/listcombowizard.cxx
M extensions/source/propctrlr/browserline.cxx
M extensions/source/scanner/sanedlg.cxx
M linguistic/source/convdiclist.cxx
M padmin/source/helper.cxx
M sc/inc/editutil.hxx
M sc/source/core/tool/editutil.cxx
M sc/source/core/tool/interpr1.cxx
M sc/source/filter/dif/difimp.cxx
M sc/source/filter/excel/excrecds.cxx
M sc/source/filter/excel/xehelper.cxx
M sc/source/filter/inc/excrecds.hxx
M sc/source/ui/app/inputhdl.cxx
14 files changed, 98 insertions(+), 98 deletions(-)



diff --git a/extensions/source/bibliography/datman.cxx 
b/extensions/source/bibliography/datman.cxx
index f4cfa2b..4fdf310 100644
--- a/extensions/source/bibliography/datman.cxx
+++ b/extensions/source/bibliography/datman.cxx
@@ -178,9 +178,8 @@
 catch (const Exception& e)
 {
 #ifdef DBG_UTIL
-String sMsg(OUString("::getColumns : catched an exception ("));
-sMsg += String(e.Message);
-sMsg.AppendAscii(") ...");
+OUString sMsg( "::getColumns : catched an exception (" + 
e.Message + ") ..." );
+
 OSL_FAIL(OUStringToOString(sMsg, RTL_TEXTENCODING_ASCII_US 
).getStr());
 #else
 (void)e;
diff --git a/extensions/source/dbpilots/listcombowizard.cxx 
b/extensions/source/dbpilots/listcombowizard.cxx
index eea2913..866a34e 100644
--- a/extensions/source/dbpilots/listcombowizard.cxx
+++ b/extensions/source/dbpilots/listcombowizard.cxx
@@ -184,13 +184,9 @@
 
getContext().xObjectModel->setPropertyValue(OUString("BoundColumn"), 
makeAny((sal_Int16)1));
 
 // build the statement to set as list source
-String sStatement;
-sStatement.AppendAscii("SELECT ");
-sStatement += getSettings().sListContentField;
-sStatement.AppendAscii(", ");
-sStatement += getSettings().sLinkedListField;
-sStatement.AppendAscii(" FROM ");
-sStatement += getSettings().sListContentTable;
+OUString sStatement = "SELECT " +
+OUString( getSettings().sListContentField ) +  ", " + 
OUString( getSettings().sLinkedListField ) +
+" FROM " + OUString( getSettings().sListContentTable );
 Sequence< OUString > aListSource(1);
 aListSource[0] = sStatement;
 
getContext().xObjectModel->setPropertyValue(OUString("ListSource"), 
makeAny(aListSource));
@@ -198,12 +194,10 @@
 else
 {
 // build the statement to set as list source
-String sStatement;
-sStatement.AppendAscii("SELECT DISTINCT ");
-sStatement += getSettings().sListContentField;
-sStatement.AppendAscii(" FROM ");
-sStatement += getSettings().sListContentTable;
-
getContext().xObjectModel->setPropertyValue(OUString("ListSource"), 
makeAny(OUString(sStatement)));
+OUString sStatement = "SELECT DISTINCT " +
+OUString( getSettings().sListContentField ) +
+" FROM " + OUString( getSettings().sListContentTable );
+getContext().xObjectModel->setPropertyValue( "ListSource", 
makeAny(OUString(sStatement)));
 }
 
 // the bound field
diff --git a/extensions/source/propctrlr/browserline.cxx 
b/extensions/source/propctrlr/browserline.cxx
index a8ec00c..37e9a74 100644
--- a/extensions/source/propctrlr/browserline.cxx
+++ b/extensions/source/propctrlr/browserline.cxx
@@ -275,16 +275,16 @@
 {
 if( m_pTheParent )
 {
-String aText = m_aFtTitle.GetText();
+OUString aText( m_aFtTitle.GetText() );
 
 while( m_pTheParent->GetTextWidth( aText ) < m_nNameWidth )
-aText.AppendAscii("...");
+aText += "...";
 
 // for Issue 69452
 if (Application::GetSettings().GetLayoutRTL())
 {
 sal_Unicode cRTL_mark = 0x200F;
-aText.Append(cRTL_mark);
+aText += OUString( cRTL_mark );
 }
 
 m_aFtTitle.SetText(aText);
diff --git a/extensions/source/scanner/sanedlg.cxx 
b/extensions/source/scanner/sanedlg.cxx
index 2ccd4d9..f0b31c6 100644
--- a/extensions/source/scanner/sanedlg.cxx
+++ b/extensions/source/scanner/sanedlg.cxx
@@ -1244,8 +1244,14 @@
 return;
 
 const char* pEnv = getenv( "HOME" );
-String aFileName( pEnv ? pEnv : "", osl_getThreadTextEncoding() );
-aFileName.AppendAscii( "/.so_sane_state"

[PATCH] Drop String.AppendAscii in editeng

2013-05-16 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/3923

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/23/3923/1

Drop String.AppendAscii in editeng

Change-Id: I25df0e20e2da50e91139cefba74af2741e5fffb5
---
M editeng/source/misc/svxacorr.cxx
M editeng/source/outliner/outlvw.cxx
M include/editeng/svxacorr.hxx
3 files changed, 10 insertions(+), 13 deletions(-)



diff --git a/editeng/source/misc/svxacorr.cxx b/editeng/source/misc/svxacorr.cxx
index eebf87c..c2f76ae 100644
--- a/editeng/source/misc/svxacorr.cxx
+++ b/editeng/source/misc/svxacorr.cxx
@@ -1604,8 +1604,8 @@
 {
 OSL_ENSURE(pLangTable->find(eLang) == pLangTable->end(), "Language already 
exists ");
 
-String sUserDirFile( GetAutoCorrFileName( eLang, sal_True, sal_False ));
-String sShareDirFile( sUserDirFile );
+OUString sUserDirFile( GetAutoCorrFileName( eLang, sal_True, sal_False ));
+OUString sShareDirFile( sUserDirFile );
 
 SvxAutoCorrectLanguageListsPtr pLists = 0;
 
@@ -1909,13 +1909,12 @@
 return sal_False;
 }
 
-String SvxAutoCorrect::GetAutoCorrFileName( LanguageType eLang,
+OUString SvxAutoCorrect::GetAutoCorrFileName( LanguageType eLang,
 sal_Bool bNewFile, sal_Bool bTst ) 
const
 {
-String sRet, sExt( LanguageTag( eLang ).getBcp47() );
+OUString sRet, sExt( LanguageTag( eLang ).getBcp47() );
 
-sExt.Insert('_', 0);
-sExt.AppendAscii( ".dat" );
+sExt = "_" + sExt + ".dat";
 if( bNewFile )
 ( sRet = sUserAutoCorrFile )  += sExt;
 else if( !bTst )
diff --git a/editeng/source/outliner/outlvw.cxx 
b/editeng/source/outliner/outlvw.cxx
index a76419e..2229857 100644
--- a/editeng/source/outliner/outlvw.cxx
+++ b/editeng/source/outliner/outlvw.cxx
@@ -1312,7 +1312,7 @@
 const EditView &rEditView )
 {
 // get text and locale for thesaurus look up
-String aText;
+OUString aText;
 EditEngine *pEditEngine = rEditView.GetEditEngine();
 ESelection aTextSel( rEditView.GetSelection() );
 if (!aTextSel.HasRange())
@@ -1320,17 +1320,15 @@
 aText = pEditEngine->GetText( aTextSel );
 aTextSel.Adjust();
 LanguageType nLang = pEditEngine->GetLanguage( aTextSel.nStartPara, 
aTextSel.nStartPos );
-String aLangText( LanguageTag( nLang ).getBcp47() );
+OUString aLangText( LanguageTag( nLang ).getBcp47() );
 
 // set word and locale to look up as status value
-String aStatusVal( aText );
-aStatusVal.AppendAscii( "#" );
-aStatusVal += aLangText;
+OUString aStatusVal= aText + "#" + aLangText;
 
 rStatusVal  = aStatusVal;
 rLang   = nLang;
 
-return aText.Len() > 0;
+return aText.getLength() > 0;
 }
 
 
diff --git a/include/editeng/svxacorr.hxx b/include/editeng/svxacorr.hxx
index 4f54d8f..9d5774a 100644
--- a/include/editeng/svxacorr.hxx
+++ b/include/editeng/svxacorr.hxx
@@ -327,7 +327,7 @@
 
 // Query/Set the name of the AutoCorrect file
 // the default is "autocorr.dat"
-String GetAutoCorrFileName( LanguageType eLang = LANGUAGE_SYSTEM,
+OUString GetAutoCorrFileName( LanguageType eLang = LANGUAGE_SYSTEM,
 sal_Bool bNewFile = sal_False,
 sal_Bool bTstUserExist = sal_False ) const;
 

-- 
To view, visit https://gerrit.libreoffice.org/3923
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I25df0e20e2da50e91139cefba74af2741e5fffb5
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] String.AppendAscii Drop

2013-05-13 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/3892

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/92/3892/1

String.AppendAscii Drop

Change-Id: I12175a81f0a74546b5e00633176f204b9a3fb35c
---
M formula/source/ui/dlg/formula.cxx
M framework/source/uielement/langselectionmenucontroller.cxx
M linguistic/source/misc2.cxx
M linguistic/workben/sspellimp.cxx
M lotuswordpro/source/filter/lwptblformula.cxx
M padmin/source/adddlg.cxx
M padmin/source/cmddlg.cxx
M padmin/source/padialog.cxx
M padmin/source/prtsetup.cxx
M reportdesign/source/ui/dlg/AddField.cxx
M sc/source/core/data/stlpool.cxx
11 files changed, 66 insertions(+), 84 deletions(-)



diff --git a/formula/source/ui/dlg/formula.cxx 
b/formula/source/ui/dlg/formula.cxx
index 51bb4e4..fa82027 100644
--- a/formula/source/ui/dlg/formula.cxx
+++ b/formula/source/ui/dlg/formula.cxx
@@ -823,11 +823,11 @@
 //  2. Page or Edit: show selected function
 
 xub_StrLen nFStart = pData->GetFStart();
-String aFormula= m_pHelper->getCurrentFormula();
+OUString aFormula  = m_pHelper->getCurrentFormula();
 xub_StrLen nNextFStart = nFStart;
 xub_StrLen nNextFEnd   = 0;
 
-aFormula.AppendAscii(RTL_CONSTASCII_STRINGPARAM( " )" ));
+aFormula += " )";
 DeleteArgs();
 const IFunctionDescription* pOldFuncDesc = pFuncDesc;
 sal_Bool bTestFlag = sal_False;
@@ -1035,8 +1035,8 @@
 const IFunctionDescription* pDesc = pFuncPage->GetFuncDesc(nFunc);
 m_pHelper->insertEntryToLRUList(pDesc);
 
-String aFuncName = pFuncPage->GetSelFunctionName();
-aFuncName.AppendAscii(RTL_CONSTASCII_STRINGPARAM( "()" ));
+OUString aFuncName = pFuncPage->GetSelFunctionName();
+aFuncName += "()";
 m_pHelper->setCurrentFormula(aFuncName);
 pMEdit->ReplaceSelected(aFuncName);
 
@@ -1433,11 +1433,11 @@
 aStr += aFtEditName.GetText();
 aStr.AppendAscii( RTL_CONSTASCII_STRINGPARAM( "( " ) );
 if( pParaWin->GetActiveLine() > 0 )
-aStr.AppendAscii( RTL_CONSTASCII_STRINGPARAM( "...; " ) );
+aStr += "...; ";
 aStr += pParaWin->GetActiveArgName();
 if( pParaWin->GetActiveLine() + 1 < nArgs )
-aStr.AppendAscii(RTL_CONSTASCII_STRINGPARAM( "; ..." ));
-aStr.AppendAscii( RTL_CONSTASCII_STRINGPARAM( " )" ) );
+aStr += "; ...";
+aStr += " )";
 
 m_pParent->SetText( MnemonicGenerator::EraseAllMnemonicChars( aStr ) );
 }
diff --git a/framework/source/uielement/langselectionmenucontroller.cxx 
b/framework/source/uielement/langselectionmenucontroller.cxx
index 28a67b9..5bcbbf3 100644
--- a/framework/source/uielement/langselectionmenucontroller.cxx
+++ b/framework/source/uielement/langselectionmenucontroller.cxx
@@ -207,23 +207,23 @@
 if ( pVCLPopupMenu )
 pPopupMenu = (PopupMenu *)pVCLPopupMenu->GetMenu();
 
-String aCmd;
-String aCmd_Dialog;
-String aCmd_Language;
+OUString aCmd;
+OUString aCmd_Dialog;
+OUString aCmd_Language;
 if( eMode == MODE_SetLanguageSelectionMenu )
 {
-aCmd_Dialog.AppendAscii(".uno:FontDialog?Language:string=*");
-
aCmd_Language.AppendAscii(".uno:LanguageStatus?Language:string=Current_");
+aCmd_Dialog += ".uno:FontDialog?Language:string=*";
+aCmd_Language += ".uno:LanguageStatus?Language:string=Current_";
 }
 else if ( eMode == MODE_SetLanguageParagraphMenu )
 {
-aCmd_Dialog.AppendAscii(".uno:FontDialogForParagraph");
-
aCmd_Language.AppendAscii(".uno:LanguageStatus?Language:string=Paragraph_");
+aCmd_Dialog += ".uno:FontDialogForParagraph";
+aCmd_Language += ".uno:LanguageStatus?Language:string=Paragraph_";
 }
 else if ( eMode == MODE_SetLanguageAllTextMenu )
 {
-aCmd_Dialog.AppendAscii(".uno:LanguageStatus?Language:string=*");
-
aCmd_Language.AppendAscii(".uno:LanguageStatus?Language:string=Default_");
+aCmd_Dialog += ".uno:LanguageStatus?Language:string=*";
+aCmd_Language += ".uno:LanguageStatus?Language:string=Default_";
 }
 
 SvtLanguageTableaLanguageTable;
@@ -264,15 +264,13 @@
 // entry for LANGUAGE_NONE
 ++nItemId;
 pPopupMenu->InsertItem( nItemId, String(FwlResId( STR_LANGSTATUS_NONE )) );
-aCmd=aCmd_Language;
-aCmd.AppendAscii("LANGUAGE_NONE");
+aCmd = aCmd_Language + "LANGUAGE_NONE";
 pPopupMenu->SetItemCommand( nItemId, aCmd );
 
 // entry for 'Reset to default language'
 ++nItemId;
 pPopupMenu->InsertItem( nItemId, String(FwlResId( 
STR_RESET_TO_DEFAULT_LANGUAGE )) );
-aCmd=aCmd_Language;
-aCmd.AppendAscii("RESET_LANGUAGES");
+aCmd = aCmd_Language + "RESET_LANGUAGES";
 pPopupMenu->SetItemCommand( nItemId, aCmd );
 
 // entry for opening the Format/Character dialog
diff --git a/linguistic/source/misc2.cxx b/linguistic/source/misc2.cxx
index d3ed550..dc5645c 100644
--- a/linguistic/s

[PATCH] Drop String.AppendAscii from filter

2013-05-06 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/3799

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/99/3799/1

Drop String.AppendAscii from filter

Change-Id: I73f61b9a20297b6b704aca52b1fc9efac563a224
---
M filter/source/graphicfilter/ieps/ieps.cxx
M filter/source/pdf/pdfexport.cxx
2 files changed, 20 insertions(+), 20 deletions(-)



diff --git a/filter/source/graphicfilter/ieps/ieps.cxx 
b/filter/source/graphicfilter/ieps/ieps.cxx
index 0ba2dae..5a8fa51 100644
--- a/filter/source/graphicfilter/ieps/ieps.cxx
+++ b/filter/source/graphicfilter/ieps/ieps.cxx
@@ -404,7 +404,7 @@
 Rectangle aRect( Point( 1, 1 ), Size( nWidth - 2, nHeight - 2 ) );
 aVDev.DrawRect( aRect );
 
-String aString;
+OUString aString;
 int nLen;
 sal_uInt8* pDest = ImplSearchEntry( pBuf, (sal_uInt8*)"%%Title:", 
nBytesRead - 32, 8 );
 if ( pDest )
@@ -416,9 +416,9 @@
 sal_uInt8 aOldValue(pDest[ nLen ]); pDest[ nLen ] = 0;
 if ( strcmp( (const char*)pDest, "none" ) != 0 )
 {
-aString.AppendAscii( " Title:" );
-aString.AppendAscii( (char*)pDest );
-aString.AppendAscii( "\n" );
+aString += " Title:";
+aString += OUString::createFromAscii( (char*)pDest );
+aString += "\n";
 }
 pDest[ nLen ] = aOldValue;
 }
@@ -430,9 +430,9 @@
 pDest++;
 nLen = ImplGetLen( pDest, 32 );
 sal_uInt8 aOldValue(pDest[ nLen ]); pDest[ nLen ] = 0;
-aString.AppendAscii( " Creator:" );
-aString.AppendAscii( (char*)pDest );
-aString.AppendAscii( "\n" );
+aString += " Creator:";
+aString += OUString::createFromAscii( (char*)pDest );
+aString += "\n";
 pDest[ nLen ] = aOldValue;
 }
 pDest = ImplSearchEntry( pBuf, (sal_uInt8*)"%%CreationDate:", nBytesRead - 
32, 15 );
@@ -445,9 +445,9 @@
 sal_uInt8 aOldValue(pDest[ nLen ]); pDest[ nLen ] = 0;
 if ( strcmp( (const char*)pDest, "none" ) != 0 )
 {
-aString.AppendAscii( " CreationDate:" );
-aString.AppendAscii( (char*)pDest );
-aString.AppendAscii( "\n" );
+aString += " CreationDate:";
+aString += OUString::createFromAscii( (char*)pDest );
+aString += "\n";
 }
 pDest[ nLen ] = aOldValue;
 }
@@ -459,8 +459,8 @@
 long nNumber = ImplGetNumber( &pDest, nCount );
 if ( nCount && ( (sal_uInt32)nNumber < 10 ) )
 {
-aString.AppendAscii( " LanguageLevel:" );
-aString.Append( OUString::valueOf( nNumber ) );
+aString += " LanguageLevel:";
+aString += OUString::valueOf( nNumber );
 }
 }
 aVDev.DrawText( aRect, aString, TEXT_DRAW_CLIP | TEXT_DRAW_MULTILINE );
diff --git a/filter/source/pdf/pdfexport.cxx b/filter/source/pdf/pdfexport.cxx
index c6e2648..23eea97 100644
--- a/filter/source/pdf/pdfexport.cxx
+++ b/filter/source/pdf/pdfexport.cxx
@@ -400,20 +400,20 @@
 
 
 // getting the string for the creator
-String aCreator;
+OUString aCreator;
 Reference< XServiceInfo > xInfo( mxSrcDoc, UNO_QUERY );
 if ( xInfo.is() )
 {
 if ( xInfo->supportsService( 
"com.sun.star.presentation.PresentationDocument" ) )
-aCreator.AppendAscii( "Impress" );
+aCreator += "Impress";
 else if ( xInfo->supportsService( 
"com.sun.star.drawing.DrawingDocument" ) )
-aCreator.AppendAscii( "Draw" );
+aCreator += "Draw";
 else if ( xInfo->supportsService( 
"com.sun.star.text.TextDocument" ) )
-aCreator.AppendAscii( "Writer" );
+aCreator += "Writer";
 else if ( xInfo->supportsService( 
"com.sun.star.sheet.SpreadsheetDocument" ) )
-aCreator.AppendAscii( "Calc" );
+aCreator += "Calc";
 else if ( xInfo->supportsService( 
"com.sun.star.formula.FormulaProperties"  ) )
-aCreator.AppendAscii( "Math" );
+aCreator += "Math";
 }
 
 Reference< document::XDocumentPropertiesSupplier > 
xDocumentPropsSupplier( mxSrcDoc, UNO_QUERY );
@@ -846,7 +846,7 @@
   OUString sShowOnlineLayout( "ShowOnlineLayout" );
   uno::Reference< beans::XPropertySet > xViewProperties;
 
-if ( aCreator.EqualsAscii( "Writer" ) )
+if ( aCreator.equalsAscii( "Writer" ) )
 {
 //i92835 if Writer is in web layout mode this has to be 
switched to normal view and back to web view in the end
 try
@@ -867,7 +867,7 @@
 
 const sal_Int32 nPageCount = xRenderable->getRendererCount( 
aSelection, aRenderOptions );

[PATCH] String::AppendAscii cleanup in dbaccess

2013-03-26 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/3068

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/68/3068/1

String::AppendAscii cleanup in dbaccess

Change-Id: I6a6d695c9e4b850bc19a3a80c2d8343147724df6
---
M dbaccess/source/ui/dlg/sqlmessage.cxx
M dbaccess/source/ui/inc/WNameMatch.hxx
M dbaccess/source/ui/misc/WNameMatch.cxx
M dbaccess/source/ui/querydesign/QueryDesignView.cxx
M dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx
5 files changed, 30 insertions(+), 30 deletions(-)



diff --git a/dbaccess/source/ui/dlg/sqlmessage.cxx 
b/dbaccess/source/ui/dlg/sqlmessage.cxx
index f9deeba..4b3c1a5 100644
--- a/dbaccess/source/ui/dlg/sqlmessage.cxx
+++ b/dbaccess/source/ui/dlg/sqlmessage.cxx
@@ -394,7 +394,7 @@
 SvTreeListEntry* pSelected = m_aExceptionList.FirstSelected();
 OSL_ENSURE(!pSelected || !m_aExceptionList.NextSelected(pSelected), 
"OExceptionChainDialog::OnExceptionSelected : multi selection ?");
 
-String sText;
+OUString sText;
 
 if ( pSelected )
 {
@@ -404,21 +404,21 @@
 if ( aExceptionInfo.sSQLState.Len() )
 {
 sText += m_sStatusLabel;
-sText.AppendAscii(": ");
+sText += ": ";
 sText += aExceptionInfo.sSQLState;
-sText.AppendAscii("\n");
+sText += "\n";
 }
 
 if ( aExceptionInfo.sErrorCode.Len() )
 {
 sText += m_sErrorCodeLabel;
-sText.AppendAscii(": ");
+sText += ": ";
 sText += aExceptionInfo.sErrorCode;
-sText.AppendAscii("\n");
+sText += "\n";
 }
 
-if ( sText.Len() )
-sText.AppendAscii( "\n" );
+if ( !sText.isEmpty() )
+sText += "\n";
 
 sText += aExceptionInfo.sMessage;
 }
diff --git a/dbaccess/source/ui/inc/WNameMatch.hxx 
b/dbaccess/source/ui/inc/WNameMatch.hxx
index 0beb955..bd2a2de 100644
--- a/dbaccess/source/ui/inc/WNameMatch.hxx
+++ b/dbaccess/source/ui/inc/WNameMatch.hxx
@@ -64,8 +64,8 @@
 ImageButton m_ibColumn_down_right;
 PushButton  m_pbAll;
 PushButton  m_pbNone;
-String  m_sSourceText;
-String  m_sDestText;
+OUStringm_sSourceText;
+OUStringm_sDestText;
 
 DECL_LINK( ButtonClickHdl, Button * );
 DECL_LINK( RightButtonClickHdl, Button * );
diff --git a/dbaccess/source/ui/misc/WNameMatch.cxx 
b/dbaccess/source/ui/misc/WNameMatch.cxx
index cfad889..725cba0 100644
--- a/dbaccess/source/ui/misc/WNameMatch.cxx
+++ b/dbaccess/source/ui/misc/WNameMatch.cxx
@@ -65,10 +65,10 @@
 m_CTRL_LEFT.SetStyle( m_CTRL_LEFT.GetStyle() | WB_FORCE_MAKEVISIBLE );
 m_CTRL_RIGHT.SetStyle( m_CTRL_RIGHT.GetStyle() | WB_FORCE_MAKEVISIBLE );
 
-m_sSourceText   = m_FT_TABLE_LEFT.GetText();
-m_sSourceText.AppendAscii("\n");
-m_sDestText = m_FT_TABLE_RIGHT.GetText();
-m_sDestText.AppendAscii("\n");
+m_sSourceText = m_FT_TABLE_LEFT.GetText();
+m_sSourceText += "\n";
+m_sDestText   = m_FT_TABLE_RIGHT.GetText();
+m_sDestText   += "\n";
 
 FreeResource();
 }
@@ -101,14 +101,14 @@
 DBG_CHKTHIS(OWizNameMatching,NULL);
 
 // set source table name
-String aName = m_sSourceText;
-aName += String(m_pParent->m_sSourceName);
+OUString aName = m_sSourceText;
+aName += m_pParent->m_sSourceName;
 
 m_FT_TABLE_LEFT.SetText(aName);
 
 // set dest table name
 aName = m_sDestText;
-aName += String(m_pParent->m_sName);
+aName += m_pParent->m_sName;
 m_FT_TABLE_RIGHT.SetText(aName);
 
 
diff --git a/dbaccess/source/ui/querydesign/QueryDesignView.cxx 
b/dbaccess/source/ui/querydesign/QueryDesignView.cxx
index b9c5279..7b5660a 100644
--- a/dbaccess/source/ui/querydesign/QueryDesignView.cxx
+++ b/dbaccess/source/ui/querydesign/QueryDesignView.cxx
@@ -395,35 +395,35 @@
 const OQueryTableConnectionData* pData)
 {
 
-String aErg(rLh);
+OUString aErg(rLh);
 if ( pData->isNatural() && pData->GetJoinType() != CROSS_JOIN )
-aErg.AppendAscii(" NATURAL ");
+aErg += " NATURAL ";
 switch(pData->GetJoinType())
 {
 case LEFT_JOIN:
-aErg.AppendAscii(" LEFT OUTER ");
+aErg += " LEFT OUTER ";
 break;
 case RIGHT_JOIN:
-aErg.AppendAscii(" RIGHT OUTER ");
+aErg += " RIGHT OUTER ";
 break;
 case CROSS_JOIN:
 OSL_ENSURE(!pData->isNatural(),"OQueryDesignView::BuildJoin: 
This should not happen!");
-aErg.AppendAscii(" CROSS ");
+aErg += " CROSS ";
 break;
 case INNER_JOIN:
 OSL_ENSURE(pData->isNatural(),"OQueryDesignView::BuildJoin: 
This should not happen!"

[PATCH] String::AppendAscii cleanup

2013-03-22 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/2914

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/14/2914/1

String::AppendAscii cleanup

Change-Id: I3c1ff291488b7747e143982aa7ea95169175c2c2
---
M basctl/source/basicide/baside2.cxx
M connectivity/source/drivers/dbase/DIndex.cxx
M connectivity/source/drivers/dbase/DTable.cxx
M cui/source/dialogs/hyphen.cxx
M cui/source/dialogs/postdlg.cxx
M cui/source/options/optdict.cxx
6 files changed, 22 insertions(+), 23 deletions(-)



diff --git a/basctl/source/basicide/baside2.cxx 
b/basctl/source/basicide/baside2.cxx
index 72d594d..f8962c5 100644
--- a/basctl/source/basicide/baside2.cxx
+++ b/basctl/source/basicide/baside2.cxx
@@ -1339,7 +1339,7 @@
 ScriptDocument aDocument( GetDocument() );
 String aLibName( GetLibName() );
 LibraryLocation eLocation = aDocument.getLibraryLocation( aLibName );
-String aModName( GetName() );
+OUString aModName( GetName() );
 String aLibSubName;
 if( xBasic.Is() && aDocument.isInVBAMode() && XModule().Is() )
 {
@@ -1355,7 +1355,7 @@
 ModuleInfoHelper::getObjectName( xLib, aModName, sObjName 
);
 if( !sObjName.isEmpty() )
 {
-aModName.AppendAscii(" 
(").Append(sObjName).AppendAscii(")");
+aModName += " (" + sObjName + ")";
 }
 }
 break;
diff --git a/connectivity/source/drivers/dbase/DIndex.cxx 
b/connectivity/source/drivers/dbase/DIndex.cxx
index 0cb4630..1e70a5c 100644
--- a/connectivity/source/drivers/dbase/DIndex.cxx
+++ b/connectivity/source/drivers/dbase/DIndex.cxx
@@ -509,16 +509,15 @@
 aName = getString(xCol->getFastPropertyValue(PROPERTY_ID_NAME));
 
 const String 
aQuote(m_pTable->getConnection()->getMetaData()->getIdentifierQuoteString());
-String aStatement;
-aStatement.AssignAscii("SELECT ");
+OUString aStatement( "SELECT " );
 aStatement += aQuote;
 aStatement += aName;
 aStatement += aQuote;
-aStatement.AppendAscii(" FROM ");
+aStatement += " FROM ";
 aStatement += aQuote;
 aStatement += m_pTable->getName().getStr();
 aStatement += aQuote;
-aStatement.AppendAscii(" ORDER BY ");
+aStatement += " ORDER BY ";
 aStatement += aQuote;
 aStatement += aName;
 aStatement += aQuote;
diff --git a/connectivity/source/drivers/dbase/DTable.cxx 
b/connectivity/source/drivers/dbase/DTable.cxx
index ee2d7df..386d802 100644
--- a/connectivity/source/drivers/dbase/DTable.cxx
+++ b/connectivity/source/drivers/dbase/DTable.cxx
@@ -2318,8 +2318,8 @@
 aURL.SetURL(aName);
 
 aURL.setExtension( _sExtension );
-String sNewName(newName);
-sNewName.AppendAscii(".");
+OUString sNewName(newName);
+sNewName += ".";
 sNewName += _sExtension;
 
 try
diff --git a/cui/source/dialogs/hyphen.cxx b/cui/source/dialogs/hyphen.cxx
index 82bef8d..26326647 100644
--- a/cui/source/dialogs/hyphen.cxx
+++ b/cui/source/dialogs/hyphen.cxx
@@ -521,10 +521,10 @@
 void SvxHyphenWordDialog::SetWindowTitle( LanguageType nLang )
 {
 String aLangStr( SvtLanguageTable::GetLanguageString( nLang ) );
-String aTmp( aLabel );
-aTmp.AppendAscii( RTL_CONSTASCII_STRINGPARAM( " (" ) );
-aTmp.Append( aLangStr );
-aTmp.Append( sal_Unicode( ')' ) );
+OUString aTmp( aLabel );
+aTmp += " (";
+aTmp += aLangStr;
+aTmp += ")";
 SetText( aTmp );
 }
 
diff --git a/cui/source/dialogs/postdlg.cxx b/cui/source/dialogs/postdlg.cxx
index cec8c01..4e2465e 100644
--- a/cui/source/dialogs/postdlg.cxx
+++ b/cui/source/dialogs/postdlg.cxx
@@ -134,8 +134,8 @@
 
 void SvxPostItDialog::ShowLastAuthor(const String& rAuthor, const String& 
rDate)
 {
-String sTxt( rAuthor );
-sTxt.AppendAscii( RTL_CONSTASCII_STRINGPARAM( ", " ) );
+OUString sTxt( rAuthor );
+sTxt += ", ";
 sTxt += rDate;
 m_pLastEditFT->SetText( sTxt );
 }
@@ -187,23 +187,23 @@
 Time aTime( Time::SYSTEM );
 String aTmp( SvtUserOptions().GetID() );
 const LocaleDataWrapper& rLocaleWrapper( 
Application::GetSettings().GetLocaleDataWrapper() );
-String aStr( m_pEditED->GetText() );
-aStr.AppendAscii( RTL_CONSTASCII_STRINGPARAM( "\n " ) );
+OUString aStr( m_pEditED->GetText() );
+aStr += "\n ";
 
 if ( aTmp.Len() > 0 )
 {
 aStr += aTmp;
-aStr.AppendAscii( RTL_CONSTASCII_STRINGPARAM( ", " ) );
+aStr += ", ";
 }
 aStr += rLocaleWrapper.getDate(aDate);
-aStr.AppendAscii( RTL_CONSTASCII_STRINGPARAM( ", " ) );
+aStr += ", ";
 aStr += rLocaleWrapper.getTime(aTime, sal_False, sal_False);
-aStr.AppendAscii( RTL_CONSTASCII_STRINGPARAM( " \n" ) );
+aStr += " \n";
 
 aStr = convertLineEnd(aStr, GetSystemLineEnd());
 
   

[PATCH] String::AppendAscii cleanup

2013-03-15 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/2755

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/55/2755/1

String::AppendAscii cleanup

Change-Id: I33d7a6b704cbb9a5a410b99237643c05a9c1cb9c
---
M cui/source/tabpages/tpbitmap.cxx
M cui/source/tabpages/tpcolor.cxx
M cui/source/tabpages/tpgradnt.cxx
M cui/source/tabpages/tphatch.cxx
M cui/source/tabpages/tplnedef.cxx
5 files changed, 46 insertions(+), 48 deletions(-)



diff --git a/cui/source/tabpages/tpbitmap.cxx b/cui/source/tabpages/tpbitmap.cxx
index 6a4b74b..74034ed 100644
--- a/cui/source/tabpages/tpbitmap.cxx
+++ b/cui/source/tabpages/tpbitmap.cxx
@@ -191,7 +191,7 @@
 
 // determining (possibly cutting) the name and
 // displaying it in the GroupBox
-String  aString( CUI_RES( RID_SVXSTR_TABLE ) ); 
aString.AppendAscii( ": " );
+OUStringaString( CUI_RES( RID_SVXSTR_TABLE ) ); aString += 
": ";
 INetURLObject   aURL( pBitmapList->GetPath() );
 
 aURL.Append( pBitmapList->GetName() );
@@ -199,11 +199,11 @@
 
 if( aURL.getBase().getLength() > 18 )
 {
-aString += String(aURL.getBase()).Copy( 0, 15 );
-aString.AppendAscii( "..." );
+aString += aURL.getBase().copy( 0, 15 );
+aString += "...";
 }
 else
-aString += String(aURL.getBase());
+aString += aURL.getBase();
 
 if( *pPageType == PT_BITMAP && *pPos != LISTBOX_ENTRY_NOTFOUND )
 {
@@ -933,16 +933,15 @@
 
 // determining (possibly cutting) the name
 // displaying it in the GroupBox
-String aString( ResId( RID_SVXSTR_TABLE, rMgr ) );
-aString.AppendAscii( ": " );
+OUString aString( ResId( RID_SVXSTR_TABLE, rMgr ) ); aString 
+= ": ";
 
 if ( aURL.getBase().getLength() > 18 )
 {
-aString += String(aURL.getBase()).Copy( 0, 15 );
-aString.AppendAscii( "..." );
+aString += aURL.getBase().copy( 0, 15 );
+aString += "...";
 }
 else
-aString += String(aURL.getBase());
+aString += aURL.getBase();
 
 *pnBitmapListState |= CT_CHANGED;
 *pnBitmapListState &= ~CT_MODIFIED;
@@ -1009,16 +1008,15 @@
 {
 // determining (possibly cutting) the name
 // displaying it in the GroupBox
-String aString( CUI_RES( RID_SVXSTR_TABLE ) );
-aString.AppendAscii( ": " );
+OUString aString( CUI_RES( RID_SVXSTR_TABLE ) ); aString += ": ";
 
 if ( aURL.getBase().getLength() > 18 )
 {
-aString += String(aURL.getBase()).Copy( 0, 15 );
-aString.AppendAscii( "..." );
+aString += aURL.getBase().copy( 0, 15 );
+aString += "...";
 }
 else
-aString += String(aURL.getBase());
+aString += aURL.getBase();
 
 *pnBitmapListState |= CT_SAVED;
 *pnBitmapListState &= ~CT_MODIFIED;
diff --git a/cui/source/tabpages/tpcolor.cxx b/cui/source/tabpages/tpcolor.cxx
index ac0c085..f8f6f82 100644
--- a/cui/source/tabpages/tpcolor.cxx
+++ b/cui/source/tabpages/tpcolor.cxx
@@ -109,8 +109,8 @@
 void SvxColorTabPage::UpdateTableName()
 {
 // Truncate the name if necessary ...
-String aString( CUI_RES( RID_SVXSTR_TABLE ) );
-aString.AppendAscii( ": " );
+OUString aString( CUI_RES( RID_SVXSTR_TABLE ) );
+aString += ": ";
 
 XPropertyListRef pList = GetList();
 if( !pList.is() )
@@ -121,11 +121,11 @@
 
 if ( aURL.getBase().getLength() > 18 )
 {
-aString += String(aURL.getBase()).Copy( 0, 15 );
-aString.AppendAscii( "..." );
+aString += aURL.getBase().copy( 0, 15 );
+aString += "...";
 }
 else
-aString += String (aURL.getBase());
+aString += aURL.getBase();
 
 m_pTableName->SetText( aString );
 }
diff --git a/cui/source/tabpages/tpgradnt.cxx b/cui/source/tabpages/tpgradnt.cxx
index 6dc0902..6bb404d 100644
--- a/cui/source/tabpages/tpgradnt.cxx
+++ b/cui/source/tabpages/tpgradnt.cxx
@@ -200,7 +200,7 @@
 
 // determining (and possibly cutting) the name and
 // displaying it in the GroupBox
-String  aString( CUI_RES( RID_SVXSTR_TABLE ) ); 
aString.AppendAscii( ": " );
+OUStringaString( CUI_RES( RID_SVXSTR_TABLE ) ); aString += 
": ";
 INetURLObject   aURL( pGradientList->GetPath() );
 
 aURL.Append( pGradientList->GetName() );
@@ -208,11 +208,11 @@
 
 if ( aURL.getBase().getLength() > 18 )
 {
-aString += St

[PATCH] String::AppendAscii cleanup

2013-03-13 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/2703

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/03/2703/1

String::AppendAscii cleanup

Change-Id: If9e57c77d39597db78739a7886d76ee0197f6461
---
M cui/source/dialogs/SpellDialog.cxx
M cui/source/tabpages/numpages.cxx
M cui/source/tabpages/tparea.cxx
3 files changed, 24 insertions(+), 24 deletions(-)



diff --git a/cui/source/dialogs/SpellDialog.cxx 
b/cui/source/dialogs/SpellDialog.cxx
index f098a28..dcae0d6 100644
--- a/cui/source/dialogs/SpellDialog.cxx
+++ b/cui/source/dialogs/SpellDialog.cxx
@@ -1897,10 +1897,10 @@
 sal_uLong nPara = pTextEngine->GetParagraphCount();
 if (nPara > 1)
 {
-String aLeftOverText;
+OUString aLeftOverText;
 for (sal_uLong i = 1;  i < nPara;  ++i)
 {
-aLeftOverText.AppendAscii( "\x0a" );// the manual line 
break...
+aLeftOverText += "\x0a";// the manual line break...
 aLeftOverText += pTextEngine->GetText(i);
 }
 if (pError)
diff --git a/cui/source/tabpages/numpages.cxx b/cui/source/tabpages/numpages.cxx
index 252e57e..07aac6f 100644
--- a/cui/source/tabpages/numpages.cxx
+++ b/cui/source/tabpages/numpages.cxx
@@ -2708,22 +2708,22 @@
 {
 #define TWIP_TO_MM100(TWIP) ((TWIP) >= 0 ? (((TWIP)*127L+36L)/72L) : 
(((TWIP)*127L-36L)/72L))
 
-sal_Char const sHash[] = " # ";
+OUString const sHash( " # " );
 if ( rNumFmt.GetPositionAndSpaceMode() == 
SvxNumberFormat::LABEL_WIDTH_AND_POSITION )
 {
-String sDebugText( OUString::valueOf( 
TWIP_TO_MM100(rNumFmt.GetAbsLSpace() ) ) );
-sDebugText.AppendAscii( sHash );
+OUString sDebugText( OUString::valueOf( 
TWIP_TO_MM100(rNumFmt.GetAbsLSpace() ) ) );
+sDebugText += sHash;
 sDebugText += OUString::valueOf( 
TWIP_TO_MM100(rNumFmt.GetCharTextDistance() ) );
-sDebugText.AppendAscii( sHash );
+sDebugText += sHash;
 sDebugText += OUString::valueOf( 
TWIP_TO_MM100(rNumFmt.GetFirstLineOffset() ) );
 rFixed.SetText(sDebugText);
 }
 else if ( rNumFmt.GetPositionAndSpaceMode() == 
SvxNumberFormat::LABEL_ALIGNMENT )
 {
 String sDebugText( OUString::valueOf( 
TWIP_TO_MM100(rNumFmt.GetListtabPos() ) ) );
-sDebugText.AppendAscii( sHash );
+sDebugText += sHash;
 sDebugText += OUString::valueOf( 
TWIP_TO_MM100(rNumFmt.GetFirstLineIndent() ) );
-sDebugText.AppendAscii( sHash );
+sDebugText += sHash;
 sDebugText += OUString::valueOf( TWIP_TO_MM100(rNumFmt.GetIndentAt() ) 
);
 rFixed.SetText(sDebugText);
 }
diff --git a/cui/source/tabpages/tparea.cxx b/cui/source/tabpages/tparea.cxx
index bd7b09b..952d612 100644
--- a/cui/source/tabpages/tparea.cxx
+++ b/cui/source/tabpages/tparea.cxx
@@ -1859,7 +1859,7 @@
 aLbHatchBckgrdColor.Hide();
 
 // set table text
-String  aString( CUI_RES( RID_SVXSTR_TABLE ) ); 
aString.AppendAscii( RTL_CONSTASCII_STRINGPARAM( ": " ) );
+OUStringaString( CUI_RES( RID_SVXSTR_TABLE ) ); aString += ": ";
 INetURLObject   aURL( pColorList->GetPath() );
 
 aURL.Append( pColorList->GetName() );
@@ -1867,11 +1867,11 @@
 
 if( aURL.getBase().getLength() > 18 )
 {
-aString += String(aURL.getBase()).Copy( 0, 15 );
-aString.AppendAscii( RTL_CONSTASCII_STRINGPARAM( "..." ) );
+aString += aURL.getBase().copy( 0, 15 );
+aString += "...";
 }
 else
-aString += String(aURL.getBase());
+aString += aURL.getBase();
 
 ModifyColorHdl_Impl( this );
 }
@@ -1948,7 +1948,7 @@
 aLbHatchBckgrdColor.Hide();
 
 // set table text
-String  aString( CUI_RES( RID_SVXSTR_TABLE ) ); 
aString.AppendAscii( RTL_CONSTASCII_STRINGPARAM( ": " ) );
+OUStringaString( CUI_RES( RID_SVXSTR_TABLE ) ); aString += ": ";
 INetURLObject   aURL( pGradientList->GetPath() );
 
 aURL.Append( pGradientList->GetName() );
@@ -1956,11 +1956,11 @@
 
 if( aURL.getBase().getLength() > 18 )
 {
-aString += String(aURL.getBase()).Copy( 0, 15 );
-aString.AppendAscii( RTL_CONSTASCII_STRINGPARAM( "..." ) );
+aString += aURL.getBase().copy( 0, 15 );
+aString += "...";
 }
 else
-aString += String(aURL.getBase());
+aString += aURL.getBase();
 
 ModifyGradientHdl_Impl( this );
 ModifyStepCountHdl_Impl( &aTsbStepCount );
@@ -2039,7 +2039,7 @@
 aLbHatchBckgrdColor.Enable();
 
 // set table text
-String  aString( CUI_RES( RID_SVXSTR_TABLE ) ); 
aString.AppendAscii( RTL_CONSTASCII_STRINGPARAM( ": " ) );
+OUStringaString( CUI_RES( RID_SVXSTR_TABLE ) ); aString += ": ";
 INetURLObject   aURL( pHatchingList->GetPath() );
 
 aURL.Append( pHatchingList->GetName() );
@@ -2047,11 +2047,11 @@
 
 if( aURL.getBase

[PATCH] Removal finished of CreateFromAscii

2013-03-12 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/2685

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/85/2685/1

Removal finished of CreateFromAscii

Change-Id: I7bb590fef530c64adbe473cffa9e09b2e4507daf
---
M vcl/unx/generic/app/salinst.cxx
M vcl/workben/outdevgrind.cxx
2 files changed, 4 insertions(+), 5 deletions(-)



diff --git a/vcl/unx/generic/app/salinst.cxx b/vcl/unx/generic/app/salinst.cxx
index b234b8b..af958fb 100644
--- a/vcl/unx/generic/app/salinst.cxx
+++ b/vcl/unx/generic/app/salinst.cxx
@@ -292,9 +292,9 @@
 const char* lang = getenv("LANG");
 if ( lang != NULL )
 {
-String aOpenWinDir( String::CreateFromAscii( 
"/usr/openwin/lib/locale/" ) );
-aOpenWinDir.AppendAscii( lang );
-aOpenWinDir.AppendAscii( "/OWfontpath" );
+OUString aOpenWinDir( "/usr/openwin/lib/locale/" );
+aOpenWinDir += OUString::createFromAscii( lang );
+aOpenWinDir += "/OWfontpath";
 
 SvFileStream aStream( aOpenWinDir, STREAM_READ );
 
diff --git a/vcl/workben/outdevgrind.cxx b/vcl/workben/outdevgrind.cxx
index 3c0d375..bec832a 100644
--- a/vcl/workben/outdevgrind.cxx
+++ b/vcl/workben/outdevgrind.cxx
@@ -892,8 +892,7 @@
 switch( nError & EXC_MAJORTYPE )
 {
 case EXC_RSCNOTLOADED:
-Abort( String::CreateFromAscii(
-   "Error: could not load language resources.\nPlease 
check your installation.\n" ) );
+Abort( "Error: could not load language resources.\nPlease check 
your installation.\n" );
 break;
 }
 return 0;

-- 
To view, visit https://gerrit.libreoffice.org/2685
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I7bb590fef530c64adbe473cffa9e09b2e4507daf
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] String::CreateFromAscii drop in sc

2013-02-27 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/2448

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/48/2448/1

String::CreateFromAscii drop in sc

Change-Id: Idb9fda589b309bd850ba2fdd68e7170c28d4c31a
---
M sc/inc/drawattr.hxx
M sc/source/ui/view/drawattr.cxx
2 files changed, 5 insertions(+), 5 deletions(-)



diff --git a/sc/inc/drawattr.hxx b/sc/inc/drawattr.hxx
index 2878c3f..e3c3a75 100644
--- a/sc/inc/drawattr.hxx
+++ b/sc/inc/drawattr.hxx
@@ -33,10 +33,10 @@
 SvxDrawToolItem(sal_uInt16 nWhichP) : SfxEnumItem(nWhichP){}
 
 
-virtual String  GetValueText() const;
+virtual OUStringGetValueText() const;
 
 
-virtual String  GetValueText(sal_uInt16 nVal) const;
+virtual OUStringGetValueText(sal_uInt16 nVal) const;
 virtual sal_uInt16  GetValueCount() const
 {return((sal_uInt16)SVX_SNAP_DRAW_TEXT);}
 
diff --git a/sc/source/ui/view/drawattr.cxx b/sc/source/ui/view/drawattr.cxx
index 63fa606..cb58d2a 100644
--- a/sc/source/ui/view/drawattr.cxx
+++ b/sc/source/ui/view/drawattr.cxx
@@ -22,14 +22,14 @@
 
 //
 
-String SvxDrawToolItem::GetValueText() const
+OUString SvxDrawToolItem::GetValueText() const
 {
 return GetValueText(GetValue());
 }
 
 //
 
-String SvxDrawToolItem::GetValueText( sal_uInt16 nVal ) const
+OUString SvxDrawToolItem::GetValueText( sal_uInt16 nVal ) const
 {
 const sal_Char* p;
 
@@ -47,7 +47,7 @@
 case 8  : p = "SVX_SNAP_DRAW_TEXT"  ; break;
 default : return EMPTY_STRING;
 }
-return String::CreateFromAscii( p );
+return OUString::createFromAscii( p );
 }
 
 //

-- 
To view, visit https://gerrit.libreoffice.org/2448
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Idb9fda589b309bd850ba2fdd68e7170c28d4c31a
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] unnecessary createFromAscii in svx

2013-02-27 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/2446

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/46/2446/1

unnecessary createFromAscii in svx

Change-Id: If13c0f526b7b95fff71e273834997b0bfc658235
---
M svx/source/dialog/svxruler.cxx
1 file changed, 1 insertion(+), 1 deletion(-)



diff --git a/svx/source/dialog/svxruler.cxx b/svx/source/dialog/svxruler.cxx
index 117642e..85a47d9 100644
--- a/svx/source/dialog/svxruler.cxx
+++ b/svx/source/dialog/svxruler.cxx
@@ -166,7 +166,7 @@
 pParent = pParent->GetParent();
 pDebugWindow = new RulerDebugWindow(pParent);
 }
-OUString sContent( OUString::createFromAscii(pDescription) );
+OUString sContent(pDescription);
 sContent += rText;
 sal_uInt16 nPos = pDebugWindow->GetLBox().InsertEntry(sContent);
 pDebugWindow->GetLBox().SelectEntryPos(nPos);

-- 
To view, visit https://gerrit.libreoffice.org/2446
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: If13c0f526b7b95fff71e273834997b0bfc658235
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] --amend

2013-02-11 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/2086

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/86/2086/1

--amend

Change-Id: Ib32b63039b225236d2a6fe55c0b90fdae9bc8fa6
---
M filter/source/msfilter/svdfppt.cxx
M sd/source/filter/ppt/pptin.cxx
M sd/source/filter/ppt/propread.cxx
M sd/source/filter/ppt/propread.hxx
4 files changed, 125 insertions(+), 29 deletions(-)



diff --git a/filter/source/msfilter/svdfppt.cxx 
b/filter/source/msfilter/svdfppt.cxx
index 537e5f2..4b202fb 100644
--- a/filter/source/msfilter/svdfppt.cxx
+++ b/filter/source/msfilter/svdfppt.cxx
@@ -5048,7 +5048,7 @@
 }
 }
 if ( i )
-aString = OUString( pBuf );
+aString = OUString(pBuf, i);
 delete[] pBuf;
 }
 else if( aTextHd.nRecType == PPT_PST_TextBytesAtom )
@@ -5101,7 +5101,7 @@
 }
 }
 
-if ( aString.getLength() )
+if ( !aString.isEmpty() )
 {
 sal_uInt32  nCharCount;
 sal_BoolbTextPropAtom = sal_False;
@@ -5123,7 +5123,7 @@
 PPTCharPropSet aCharPropSet( nCurrentPara );
 if ( bTextPropAtom )
 {
-if( nCharAnzRead == ( nStringLen - 1 ) && aString == "\r" )
+if( nCharAnzRead == ( nStringLen - 1 ) && 
aString[nCharAnzRead] == '\r' )
 {
 /* n#782833: Seems like the new line character at end of 
the para
  * has two char properties and we would need to use the 
next one.
@@ -5165,7 +5165,7 @@
 {
 nLen = ( nCurrentSpecMarker & 0x ) - nCharAnzRead;
 if ( nLen )
-aCharPropSet.maString = aString;
+aCharPropSet.maString = aString.copy( 
nCharAnzRead, nLen );
 else if ( bEmptyParaPossible )
 aCharPropSet.maString = OUString();
 if ( nLen || bEmptyParaPossible )
@@ -5181,7 +5181,7 @@
 if ( ( nCurrentSpecMarker & 0x ) != nCharAnzRead )
 {
 nLen = ( nCurrentSpecMarker & 0x ) - 
nCharAnzRead;
-aCharPropSet.maString = aString;
+aCharPropSet.maString = aString.copy(nCharAnzRead, 
nLen);
 aCharPropList.push_back( new PPTCharPropSet( 
aCharPropSet, nCurrentPara ) );
 nCharCount -= nLen;
 nCharAnzRead += nLen;
@@ -5199,7 +5199,7 @@
 }
 else
 {
-aCharPropSet.maString = aString;
+aCharPropSet.maString = aString.copy(nCharAnzRead, nLen);
 aCharPropList.push_back( new PPTCharPropSet( aCharPropSet, 
nCurrentPara ) );
 nCharAnzRead += nCharCount;
 bEmptyParaPossible = sal_False;
@@ -6506,8 +6506,8 @@
 {
 OUString aString( 
pSet->maString );
 PPTCharPropSet* pNew = 
new PPTCharPropSet( *pSet );
-pSet->maString = 
aString;
-pNew->maString = 
aString;
+pSet->maString = 
aString.copy( 0, nOldLen);
+pNew->maString = 
aString.copy( nOldLen, nNewLen);
 
pNew->mnOriginalTextPos += nOldLen;
 
aStyleTextPropReader.aCharPropList.insert( 
aStyleTextPropReader.aCharPropList.begin() + nI + 1, pNew );
 }
@@ -6744,14 +6744,14 @@
 
 if ( (*FE)->nPos == nPos )
 {
-if ( aString[(sal_uInt16)nCount] 
== 0x2a )
+if ( aString[nCount] == 0x2a )
 {
 sal_uInt32 nBehind = 
aString.getLength() - ( nCount + 1 );
 pSet->maString = OUString();
 if ( nBehind )
 {
 PPTCharPropSet* pNewCPS = 
new PPTCharPropSet( *pSet );
-pNewCPS->maString = 
aString;
+pNewCPS->maString = 
aString.copy( nCount + 1, nBehind );
  

[PATCH] String cleanup in filter

2013-02-02 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1970

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/70/1970/1

String cleanup in filter

Change-Id: If9fac2f277550cc786baffe4f89c7181b2d10dfd
---
M filter/inc/filter/msfilter/svdfppt.hxx
M filter/source/msfilter/svdfppt.cxx
2 files changed, 83 insertions(+), 83 deletions(-)



diff --git a/filter/inc/filter/msfilter/svdfppt.hxx 
b/filter/inc/filter/msfilter/svdfppt.hxx
index 79272f5..fcc704f 100644
--- a/filter/inc/filter/msfilter/svdfppt.hxx
+++ b/filter/inc/filter/msfilter/svdfppt.hxx
@@ -63,7 +63,7 @@
 sal_uInt16  nDocFileVersion;
 sal_uInt8   nMajorVersion;
 sal_uInt8   nMinorVersion;
-String  aCurrentUser;
+OUStringaCurrentUser;
 
 public:
 
@@ -92,13 +92,13 @@
 sal_Int32   nPrivate2;
 sal_Int32   nPrivate3;
 sal_Int32   nInfo;
-String  aTarget;
-String  aSubAdress;
+OUStringaTarget;
+OUStringaSubAdress;
 
 sal_Int32   nStartPos;
 sal_Int32   nEndPos;
 
-String  aConvSubString;
+OUStringaConvSubString;
 ESelection  aESelection;
 sal_BoolbSelection;
 };
@@ -260,7 +260,7 @@
 
 struct PptFontEntityAtom
 {
-String  aName;
+OUStringaName;
 double  fScaling;
 sal_uInt8   lfClipPrecision;
 sal_uInt8   lfQuality;
@@ -416,7 +416,7 @@
 sal_BoolbTimesNewRomanChecked   : 1;
 sal_BoolbTimesNewRomanAvailable : 1;
 
-sal_BoolReadString( rtl::OUString& rStr ) const;
+sal_BoolReadString( OUString& rStr ) const;
 // nur fuer PowerPoint-Filter:
 virtual const PptSlideLayoutAtom* GetSlideLayoutAtom() const;
 
@@ -425,7 +425,7 @@
 
 PowerPointImportParam& rImportParam;
 
-SdrEscherImport( PowerPointImportParam&, const String& 
rBaseURL );
+SdrEscherImport( PowerPointImportParam&, const 
OUString& rBaseURL );
 virtual ~SdrEscherImport();
 virtual boolGetColorFromPalette( sal_uInt16 nNum, Color& rColor ) 
const;
 virtual sal_BoolSeekToShape( SvStream& rSt, void* pClientData, 
sal_uInt32 nId ) const;
@@ -453,7 +453,7 @@
 sal_uInt16  nTextRangeEnd;
 SvxFieldItem*   pField1;
 SvxFieldItem*   pField2;
-String* pString;
+OUString*   pString;
 
 PPTFieldEntry() : nPos( 0 ), nTextRangeEnd( 0 ), pField1( NULL ), pField2( 
NULL ), pString( NULL ) {};
 ~PPTFieldEntry();
@@ -471,7 +471,7 @@
 struct MSFILTER_DLLPUBLIC HeaderFooterEntry
 {
 const PptSlidePersistEntry* pMasterPersist;
-String  pPlaceholder[ 4 ];
+OUStringpPlaceholder[ 4 ];
 sal_uInt32  nAtom;
 
 sal_uInt32  GetMaskForInstance( sal_uInt32 nInstance );
@@ -575,7 +575,7 @@
 voidSeekOle( SfxObjectShell* pShell, sal_uInt32 
nFilterOptions );
 
 public:
-SdrPowerPointImport( PowerPointImportParam&, const 
String& rBaseURL );
+SdrPowerPointImport( PowerPointImportParam&, const 
OUString& rBaseURL );
 virtual ~SdrPowerPointImport();
 sal_uInt16  GetPageCount( PptPageKind eKind = PPT_SLIDEPAGE ) 
const;
 voidSetPageNum( sal_uInt16 nPageNum, PptPageKind = 
PPT_SLIDEPAGE );
@@ -916,7 +916,7 @@
 
 sal_uInt32  mnOriginalTextPos;
 sal_uInt32  mnParagraph;
-String  maString;
+OUStringmaString;
 SvxFieldItem*   mpFieldItem;
 sal_uInt16  mnLanguage[ 3 ];
 
@@ -1049,7 +1049,7 @@
 SvStream& rIn,
 SdrPowerPointImport& rMan,
 const DffRecordHeader& rTextHeader,
-const String& aString,
+const OUString& aString,
 PPTTextRulerInterpreter& rRuler,
 sal_uInt32& nCharCount,
 sal_Bool& bTextPropAtom
@@ -1057,7 +1057,7 @@
 voidReadCharProps(
 SvStream& rIn,
 PPTCharPropSet& aCharPropSet,
-const String& aString,
+const OUString& aString,
 sal_uInt32& nCharCount,
 sal_uInt32 nCharAnzRead,
 sal_Bool& bTextPropAtom,
@@ -1107,7 +1107,7 @@
 sal_uInt32 nInstanceInSheet,
 const PPTTextObj* pTextObj
 );
-sal_uInt32  Count() const { return ( mpFieldItem ) ? 1 : 
maString.Len(); };
+sal_uInt32  Count() const { return ( mpFieldItem ) ? 1 : 
maString.getLength(); };
 sal_BoolHasTabulator();
 };
 
diff --git a/filter/source/msfilter/svdfppt.cxx 
b/filter/source/msfilter/svdfppt.cxx
index 208d8b5..537e5f2 100644
--- a/filter/source/msfilter/svdfppt.cxx
+++ b/filter/source/msfilter/svdfppt.

[PATCH] String cleanup in filter

2013-01-25 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1848

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/48/1848/1

String cleanup in filter

Change-Id: I5678cd4f0bbfc1603bb7f3881adb4359a25ddbc5
---
M filter/inc/filter/msfilter/svxmsbas.hxx
M filter/source/msfilter/svxmsbas2.cxx
2 files changed, 8 insertions(+), 8 deletions(-)



diff --git a/filter/inc/filter/msfilter/svxmsbas.hxx 
b/filter/inc/filter/msfilter/svxmsbas.hxx
index 66df15e..8f87401 100644
--- a/filter/inc/filter/msfilter/svxmsbas.hxx
+++ b/filter/inc/filter/msfilter/svxmsbas.hxx
@@ -44,9 +44,9 @@
  * probably what the user expects to see when viewing the code
  */
 
-typedef boost::unordered_map< sal_Int32, String >  ObjIdToName;
+typedef boost::unordered_map< sal_Int32, OUString >  ObjIdToName;
 
-typedef std::map< String, ObjIdToName >  ControlAttributeInfo;
+typedef std::map< OUString, ObjIdToName >  ControlAttributeInfo;
 
 class MSFILTER_DLLPUBLIC SvxImportMSVBasic
 {
@@ -58,13 +58,13 @@
 // form the ObjectShell
 // - returns a warning code if a modified basic exist, in all other
 //   cases return ERRCODE_NONE.
-sal_uLong SaveOrDelMSVBAStorage( sal_Bool bSaveInto, const String& 
rStorageName );
+sal_uLong SaveOrDelMSVBAStorage( sal_Bool bSaveInto, const OUString& 
rStorageName );
 
 // check if the MS-VBA-Storage exist in the RootStorage of the DocShell.
 // If it exist, then return the WarningId for loosing the information.
 static sal_uLong GetSaveWarningOfMSVBAStorage( SfxObjectShell &rDocS );
 
-static String GetMSBasicStorageName();
+static OUString GetMSBasicStorageName();
 private:
 SotStorageRef xRoot;
 SfxObjectShell &rDocSh;
diff --git a/filter/source/msfilter/svxmsbas2.cxx 
b/filter/source/msfilter/svxmsbas2.cxx
index d0b9d91..a1c4b8e 100644
--- a/filter/source/msfilter/svxmsbas2.cxx
+++ b/filter/source/msfilter/svxmsbas2.cxx
@@ -26,11 +26,11 @@
 using namespace com::sun::star;
 
 sal_uLong SvxImportMSVBasic::SaveOrDelMSVBAStorage( sal_Bool bSaveInto,
-const String& rStorageName )
+const OUString& rStorageName )
 {
 sal_uLong nRet = ERRCODE_NONE;
 uno::Reference < embed::XStorage > xSrcRoot( rDocSh.GetStorage() );
-String aDstStgName( GetMSBasicStorageName() );
+OUString aDstStgName( GetMSBasicStorageName() );
 SotStorageRef xVBAStg( SotStorage::OpenOLEStorage( xSrcRoot, aDstStgName,
 STREAM_READWRITE | STREAM_NOCREATE | 
STREAM_SHARE_DENYALL ) );
 if( xVBAStg.Is() && !xVBAStg->GetError() )
@@ -70,9 +70,9 @@
 : ERRCODE_NONE;
 }
 
-String SvxImportMSVBasic::GetMSBasicStorageName()
+OUString SvxImportMSVBasic::GetMSBasicStorageName()
 {
-return String( RTL_CONSTASCII_USTRINGPARAM( "_MS_VBA_Macros" ) );
+return OUString( "_MS_VBA_Macros" );
 }
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

-- 
To view, visit https://gerrit.libreoffice.org/1848
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I5678cd4f0bbfc1603bb7f3881adb4359a25ddbc5
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] String Cleanup and news OUString methods/constructors

2012-12-27 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1491

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/91/1491/1

String Cleanup and news OUString methods/constructors

Change-Id: Ia6142020330d0e12650fdc519b66f00e607eac42
---
M filter/source/xsltdialog/xmlfiltertestdialog.cxx
M tools/inc/tools/tempfile.hxx
M tools/source/fsys/tempfile.cxx
M unotools/inc/unotools/tempfile.hxx
M unotools/source/ucbhelper/tempfile.cxx
5 files changed, 304 insertions(+), 86 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/1491
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ia6142020330d0e12650fdc519b66f00e607eac42
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] More String cleanup in filter

2012-12-21 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1463

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/63/1463/1

More String cleanup in filter

Change-Id: Idf628ad51ebe9c841090a5e04c7986c15c726480
---
M filter/source/xsltdialog/xmlfiltertabpagebasic.cxx
M filter/source/xsltdialog/xmlfiltertabpagexslt.cxx
2 files changed, 23 insertions(+), 24 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/1463
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Idf628ad51ebe9c841090a5e04c7986c15c726480
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] String -> OUString in filter

2012-12-19 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1420

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/20/1420/1

String -> OUString in filter

Change-Id: I5d7b3aa2348cb4f0e8b05be0777b510ec5eb5db5
---
M filter/inc/filter/msfilter/msvbahelper.hxx
M filter/source/msfilter/msvbahelper.cxx
2 files changed, 98 insertions(+), 94 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/1420
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I5d7b3aa2348cb4f0e8b05be0777b510ec5eb5db5
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] String removal in filter

2012-12-12 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1309

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/09/1309/1

String removal in filter

Change-Id: I170d132e9329dd58ed6dc9bbf4094c234d122592
---
M filter/source/xsltdialog/xmlfiltersettingsdialog.cxx
M filter/source/xsltdialog/xmlfiltersettingsdialog.hxx
2 files changed, 56 insertions(+), 57 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/1309
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I170d132e9329dd58ed6dc9bbf4094c234d122592
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] String -> OUString in filter

2012-12-10 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1295

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/95/1295/1

String -> OUString in filter

Change-Id: I9041129289c24c4ee8a7a6d50e34b785969e8204
---
M filter/source/xsltdialog/xmlfiltertabdialog.cxx
1 file changed, 12 insertions(+), 14 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/1295
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I9041129289c24c4ee8a7a6d50e34b785969e8204
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] fdo##38838 UniString Removal in dbaccess

2012-11-30 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1208

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/08/1208/1

fdo##38838 UniString Removal in dbaccess

Change-Id: I6c4f8e9834fdd78851f5274ce2b141cfb49e6458
---
M dbaccess/source/ui/dlg/paramdialog.cxx
M dbaccess/source/ui/dlg/sqlmessage.cxx
M dbaccess/source/ui/inc/paramdialog.hxx
M dbaccess/source/ui/inc/sqlmessage.hxx
4 files changed, 14 insertions(+), 14 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/1208
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I6c4f8e9834fdd78851f5274ce2b141cfb49e6458
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


fdo#38838 UniString -> OUString in dbaccess

2012-11-30 Thread Ricardo Montania (via Code Review)
Ricardo Montania has abandoned this change.

Change subject: fdo#38838 UniString -> OUString in dbaccess
..


Patch Set 1: Abandoned

Need of change previous patch.

--
To view, visit https://gerrit.libreoffice.org/1206
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: abandon
Gerrit-Change-Id: Ief7e1faf605ca80555f752bd875db56f47e36ad6
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] fdo#38838 UniString -> OUString in dbaccess

2012-11-30 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1206

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/06/1206/1

fdo#38838 UniString -> OUString in dbaccess

Change-Id: Ief7e1faf605ca80555f752bd875db56f47e36ad6
---
M dbaccess/source/ui/dlg/paramdialog.cxx
M dbaccess/source/ui/dlg/sqlmessage.cxx
M dbaccess/source/ui/inc/paramdialog.hxx
M dbaccess/source/ui/inc/sqlmessage.hxx
4 files changed, 14 insertions(+), 14 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/1206
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ief7e1faf605ca80555f752bd875db56f47e36ad6
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] fdo#38838 UniString -> OUString in cui

2012-11-30 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1203

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/03/1203/1

fdo#38838 UniString -> OUString in cui

Change-Id: I16eae4aff2b946421df2b65ecfbd1d9b2e2256b6
---
M cui/source/tabpages/tpcolor.cxx
M cui/source/tabpages/tpgradnt.cxx
M cui/source/tabpages/tphatch.cxx
M cui/source/tabpages/tpline.cxx
M cui/source/tabpages/tplnedef.cxx
M cui/source/tabpages/tplneend.cxx
M cui/source/tabpages/transfrm.cxx
7 files changed, 40 insertions(+), 40 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/1203
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I16eae4aff2b946421df2b65ecfbd1d9b2e2256b6
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] fdo#38838 UniString -> OUString in cui

2012-11-30 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1202

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/02/1202/1

fdo#38838 UniString -> OUString in cui

Change-Id: I9b629cad4d9b6d4c086bfff47f1d3e9779b2c24d
---
M cui/source/tabpages/numfmt.cxx
M cui/source/tabpages/numpages.cxx
M cui/source/tabpages/page.cxx
M cui/source/tabpages/tpbitmap.cxx
4 files changed, 42 insertions(+), 43 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/1202
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I9b629cad4d9b6d4c086bfff47f1d3e9779b2c24d
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] ::rtl prefix removal in canvas

2012-11-27 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1181

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/81/1181/1

::rtl prefix removal in canvas

Change-Id: Iab6aaa9f06dfe69c85db5e87f9512db0eb44caa8
---
M canvas/source/cairo/cairo_canvas.hxx
M canvas/source/cairo/cairo_canvashelper_text.cxx
M canvas/source/cairo/cairo_devicehelper.cxx
M canvas/source/cairo/cairo_spritecanvas.cxx
M canvas/source/cairo/cairo_spritecanvas.hxx
M canvas/source/cairo/cairo_textlayout.cxx
M canvas/source/cairo/cairo_textlayout.hxx
7 files changed, 24 insertions(+), 26 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/1181
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Iab6aaa9f06dfe69c85db5e87f9512db0eb44caa8
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] More ::rtl::OUString -> OUString in canvas

2012-11-26 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1175

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/75/1175/1

More ::rtl::OUString -> OUString in canvas

Change-Id: If99dfc98ace1bf62cd5ab05c596f4f6ffc5fbd2f
---
M canvas/inc/canvas/verifyinput.hxx
M canvas/source/cairo/cairo_canvas.cxx
M canvas/source/cairo/cairo_canvasbitmap.cxx
M canvas/source/cairo/cairo_canvasbitmap.hxx
M canvas/source/cairo/cairo_canvascustomsprite.cxx
M canvas/source/cairo/cairo_canvascustomsprite.hxx
M canvas/source/cairo/cairo_canvasfont.cxx
M canvas/source/cairo/cairo_canvasfont.hxx
8 files changed, 35 insertions(+), 44 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/1175
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: If99dfc98ace1bf62cd5ab05c596f4f6ffc5fbd2f
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] Some ::rtl::OUString -> OUString in canvas

2012-11-26 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1174

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/74/1174/1

Some ::rtl::OUString -> OUString in canvas

Change-Id: Icfcd96432327873f23351a85f8015f0a945dbf47
---
M canvas/inc/canvas/base/cachedprimitivebase.hxx
M canvas/inc/canvas/base/graphicdevicebase.hxx
M canvas/inc/canvas/canvastools.hxx
M canvas/inc/canvas/parametricpolypolygon.hxx
M canvas/inc/canvas/propertysethelper.hxx
5 files changed, 27 insertions(+), 27 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/1174
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Icfcd96432327873f23351a85f8015f0a945dbf47
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] Some ::rtl::OUString -> OUString in bridges

2012-11-14 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1068

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/68/1068/1

Some ::rtl::OUString -> OUString in bridges

Change-Id: I5412773f9cebc633a78ee5733b62f64b6d1599d4
---
M bridges/source/cpp_uno/cc50_solaris_sparc/except.cxx
M bridges/source/cpp_uno/cc5_solaris_sparc64/exceptions.cxx
M bridges/source/cpp_uno/cc5_solaris_sparc64/uno2cpp.cxx
M bridges/source/cpp_uno/gcc3_aix_powerpc/cpp2uno.cxx
4 files changed, 15 insertions(+), 27 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/1068
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I5412773f9cebc633a78ee5733b62f64b6d1599d4
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] rtl::OUString -> OUString in bridges

2012-11-14 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1057

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/57/1057/1

rtl::OUString -> OUString in bridges

Change-Id: I292f2007771ab12a30de6cd5a6a1ed436adcff66
---
M bridges/source/cpp_uno/cc50_solaris_intel/cpp2uno.cxx
M bridges/source/cpp_uno/cc50_solaris_intel/except.cxx
M bridges/source/cpp_uno/cc50_solaris_intel/uno2cpp.cxx
3 files changed, 4 insertions(+), 10 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/1057
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I292f2007771ab12a30de6cd5a6a1ed436adcff66
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] More ::rtl::OUString -> OUString in bridges

2012-11-03 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/976

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/76/976/1

More ::rtl::OUString -> OUString in bridges

Change-Id: Ibd29c68077dd8f27c95cd4cb62cd8dad0e18aacf
---
M bridges/source/cpp_uno/cc50_solaris_sparc/uno2cpp.cxx
M bridges/source/cpp_uno/gcc3_linux_sparc/cpp2uno.cxx
M bridges/source/cpp_uno/gcc3_linux_sparc/uno2cpp.cxx
M bridges/source/cpp_uno/shared/cppinterfaceproxy.cxx
M bridges/source/cpp_uno/shared/unointerfaceproxy.cxx
M bridges/source/cpp_uno/shared/vtablefactory.cxx
6 files changed, 16 insertions(+), 22 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/976
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ibd29c68077dd8f27c95cd4cb62cd8dad0e18aacf
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] ::rtl::OUString -> OUString in bridges

2012-11-03 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/974

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/74/974/1

::rtl::OUString -> OUString in bridges

Change-Id: I3a4fa7b108c58f100d2c8a586ec6c76af902e138
---
M bridges/inc/bridges/cpp_uno/bridge.hxx
M bridges/inc/bridges/cpp_uno/shared/cppinterfaceproxy.hxx
M bridges/inc/bridges/cpp_uno/shared/unointerfaceproxy.hxx
M bridges/inc/bridges/cpp_uno/shared/vtablefactory.hxx
M bridges/source/cpp_uno/gcc3_macosx_intel/cpp2uno.cxx
M bridges/source/cpp_uno/shared/component.cxx
6 files changed, 34 insertions(+), 34 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/974
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I3a4fa7b108c58f100d2c8a586ec6c76af902e138
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] fdo#38838 UniString removal

2012-11-02 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/971

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/71/971/1

fdo#38838 UniString removal

Change-Id: I7bf9b0e94bff9047544f6aba9669b8e0a3d3a2a5
---
M cui/source/tabpages/chardlg.cxx
M cui/source/tabpages/grfpage.cxx
2 files changed, 15 insertions(+), 14 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/971
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I7bf9b0e94bff9047544f6aba9669b8e0a3d3a2a5
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] fdo#38838 UniString removal

2012-11-02 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/970

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/70/970/1

fdo#38838 UniString removal

Change-Id: Id1a17001caa0f6350de10d8af016630f4c76a55b
---
M cui/source/dialogs/cuifmsearch.cxx
M cui/source/inc/cuifmsearch.hxx
2 files changed, 10 insertions(+), 10 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/970
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Id1a17001caa0f6350de10d8af016630f4c76a55b
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


unusedcode.easy cleanup

2012-11-02 Thread Ricardo Montania (via Code Review)
Ricardo Montania has abandoned this change.

Change subject: unusedcode.easy cleanup
..


Patch Set 1: Abandoned

Method needed for windows build

--
To view, visit https://gerrit.libreoffice.org/942
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: abandon
Gerrit-Change-Id: Ia16a0571f253faa0364eec78bb29e4f13485a584
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 
Gerrit-Reviewer: Caolán McNamara 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] fdo#38838 UniString replacement

2012-11-01 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/965

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/65/965/1

fdo#38838 UniString replacement

Change-Id: I1323b2caf395c10b34e7467284402c0e3082f6a7
---
M cui/source/dialogs/cuifmsearch.cxx
M cui/source/factory/dlgfact.cxx
M cui/source/factory/dlgfact.hxx
M cui/source/inc/cuifmsearch.hxx
M svx/inc/svx/svxdlg.hxx
5 files changed, 5 insertions(+), 5 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/965
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I1323b2caf395c10b34e7467284402c0e3082f6a7
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


fdo# UniString replacement

2012-11-01 Thread Ricardo Montania (via Code Review)
Ricardo Montania has abandoned this change.

Change subject: fdo# UniString replacement
..


Patch Set 1: Abandoned

Wrong description

--
To view, visit https://gerrit.libreoffice.org/964
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: abandon
Gerrit-Change-Id: Idf630c7e4627894f5edd68be0dc2588b90d7a930
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] fdo# UniString replacement

2012-11-01 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/964

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/64/964/1

fdo# UniString replacement

Change-Id: Idf630c7e4627894f5edd68be0dc2588b90d7a930
---
M cui/source/dialogs/cuifmsearch.cxx
M cui/source/factory/dlgfact.cxx
M cui/source/factory/dlgfact.hxx
M cui/source/inc/cuifmsearch.hxx
M svx/inc/svx/svxdlg.hxx
5 files changed, 5 insertions(+), 5 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/964
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Idf630c7e4627894f5edd68be0dc2588b90d7a930
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


::rtl::OUString -> OUString in basic

2012-11-01 Thread Ricardo Montania (via Code Review)
Ricardo Montania has abandoned this change.

Change subject: ::rtl::OUString -> OUString in basic
..


Patch Set 1: Abandoned

No problem.. I'll work in another module :)

--
To view, visit https://gerrit.libreoffice.org/957
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: abandon
Gerrit-Change-Id: I9df082b774b7ce208aa3b2decf5a576752a74fa2
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 
Gerrit-Reviewer: Norbert Thiebaud 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] ::rtl::OUString -> OUString in basic

2012-11-01 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/957

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/57/957/1

::rtl::OUString -> OUString in basic

Change-Id: I9df082b774b7ce208aa3b2decf5a576752a74fa2
---
M basic/inc/basic/basmgr.hxx
M basic/inc/basic/modsizeexceeded.hxx
M basic/inc/basic/sbdef.hxx
M basic/inc/basic/sbmod.hxx
M basic/inc/basic/sbobjmod.hxx
M basic/inc/basic/sbstar.hxx
M basic/inc/basic/sbstdobj.hxx
M basic/inc/basic/sbuno.hxx
M basic/inc/basic/sbx.hxx
M basic/inc/basic/sbxcore.hxx
M basic/inc/basic/sbxfac.hxx
M basic/inc/basic/sbxobj.hxx
12 files changed, 33 insertions(+), 33 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/957
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I9df082b774b7ce208aa3b2decf5a576752a74fa2
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] unusedcode.easy cleanup

2012-10-30 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/942

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/42/942/1

unusedcode.easy cleanup

Change-Id: Ia16a0571f253faa0364eec78bb29e4f13485a584
---
M vcl/inc/outfont.hxx
M vcl/source/gdi/outdev3.cxx
2 files changed, 0 insertions(+), 10 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/942
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ia16a0571f253faa0364eec78bb29e4f13485a584
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] ::rtl::OUString -> OUString in basegfx

2012-10-27 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/929

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/29/929/1

::rtl::OUString -> OUString in basegfx

Change-Id: I2e0189135d5f30b20e625b849cedbef2eb639ed9
---
M basegfx/source/polygon/b2dsvgpolypolygon.cxx
M basegfx/source/tools/canvastools.cxx
M basegfx/source/tools/unopolypolygon.cxx
3 files changed, 36 insertions(+), 38 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/929
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I2e0189135d5f30b20e625b849cedbef2eb639ed9
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] ::rtl::OUString -> OUString in basebmp

2012-10-27 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/928

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/28/928/1

::rtl::OUString -> OUString in basebmp

Change-Id: Id9cde5559165c61da825938153e92df999233a59
---
M basebmp/test/bmpdemo.cxx
M basebmp/test/bmpmasktest.cxx
M basebmp/test/bmptest.cxx
M basebmp/test/cliptest.cxx
M basebmp/test/filltest.cxx
M basebmp/test/masktest.cxx
M basebmp/test/polytest.cxx
7 files changed, 24 insertions(+), 25 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/928
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Id9cde5559165c61da825938153e92df999233a59
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] OUString cleanup finished in basctl

2012-10-26 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/925

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/25/925/1

OUString cleanup finished in basctl

Change-Id: I6d18f5cde7866828ca95ccff702eb86d2e40c58d
---
M basctl/source/inc/dlgeddef.hxx
M basctl/source/inc/localizationmgr.hxx
M basctl/source/inc/managelang.hxx
M basctl/source/inc/propbrw.hxx
M basctl/source/inc/sbxitem.hxx
5 files changed, 40 insertions(+), 40 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/925
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I6d18f5cde7866828ca95ccff702eb86d2e40c58d
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] OUString cleanup and some identation

2012-10-26 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/924

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/24/924/1

OUString cleanup and some identation

Change-Id: Id222047750b7527e35977b73213ceeb12a53b57a
---
M basctl/source/inc/basobj.hxx
M basctl/source/inc/scriptdocument.hxx
2 files changed, 51 insertions(+), 55 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/924
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Id222047750b7527e35977b73213ceeb12a53b57a
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] More ::rtl::OUString -> OUString in basctl

2012-10-22 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/901

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/01/901/1

More ::rtl::OUString -> OUString in basctl

Change-Id: Ia68b74d06ffe533bcc302fb5094267e0efae6faa
---
M basctl/source/dlged/propbrw.cxx
1 file changed, 30 insertions(+), 31 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/901
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ia68b74d06ffe533bcc302fb5094267e0efae6faa
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] ::rtl::OUString -> OUString in basctl

2012-10-22 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/900

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/00/900/1

::rtl::OUString -> OUString in basctl

Change-Id: Ief0083c0274c573fce62c32dfae35a647804b20e
---
M basctl/source/dlged/dlgedobj.cxx
M basctl/source/dlged/managelang.cxx
2 files changed, 34 insertions(+), 35 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/900
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ief0083c0274c573fce62c32dfae35a647804b20e
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] Some ::rtl::OUString to OUString in basctl

2012-10-22 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/896

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/96/896/1

Some ::rtl::OUString to OUString in basctl

Change-Id: Ifbc60c2e6f2906cc0b7a3ea3fb9dfa1a8421d6a2
---
M basctl/source/dlged/dlgedclip.cxx
M basctl/source/dlged/dlgedfac.cxx
2 files changed, 34 insertions(+), 34 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/896
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ifbc60c2e6f2906cc0b7a3ea3fb9dfa1a8421d6a2
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] OUString cleanup in basctl

2012-10-19 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/892

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/92/892/1

OUString cleanup in basctl

Change-Id: I9644427f6d3bb4b2f488325eb520b365115a8e82
---
M basctl/source/basicide/baside2b.cxx
M basctl/source/basicide/basides2.cxx
M basctl/source/basicide/tbxctl.cxx
M basctl/source/basicide/unomodel.cxx
M basctl/source/dlged/dlged.cxx
5 files changed, 30 insertions(+), 33 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/892
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I9644427f6d3bb4b2f488325eb520b365115a8e82
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] More rtl::OUString cleanup in basctl

2012-10-14 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/873

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/73/873/1

More rtl::OUString cleanup in basctl

Change-Id: Ife2754b17e111c0e129670b95bd2e16d81ad906c
---
M basctl/source/basicide/moduldlg.hxx
M basctl/source/basicide/scriptdocument.cxx
2 files changed, 93 insertions(+), 97 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/873
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ife2754b17e111c0e129670b95bd2e16d81ad906c
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] rtl::OUString cleanup in basctl

2012-10-14 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/872

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/72/872/1

rtl::OUString cleanup in basctl

Change-Id: If57c184b355224f31fdf7872ab1f52c034e5c7f0
---
M basctl/source/basicide/moduldlg.cxx
M basctl/source/basicide/register.cxx
M basctl/source/basicide/sbxitem.cxx
3 files changed, 41 insertions(+), 42 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/872
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: If57c184b355224f31fdf7872ab1f52c034e5c7f0
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] 766 gerrit patch, fix appendAscii in bastype2.cxx

2012-10-10 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/854

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/54/854/1

766 gerrit patch, fix appendAscii in bastype2.cxx

Change-Id: I4409d1b0585a8c52cba14d1e67ccf776c6070c8a
---
M basctl/source/basicide/bastype2.cxx
1 file changed, 1 insertion(+), 1 deletion(-)


--
To view, visit https://gerrit.libreoffice.org/854
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I4409d1b0585a8c52cba14d1e67ccf776c6070c8a
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] Review corrections in basctl/.../basobj3.cxx

2012-10-09 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/851

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/51/851/1

Review corrections in basctl/.../basobj3.cxx

Change-Id: I905e85ce9d754047ad287c9dd3caa92427b25b0d
---
M basctl/source/basicide/basobj3.cxx
1 file changed, 2 insertions(+), 2 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/851
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I905e85ce9d754047ad287c9dd3caa92427b25b0d
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] Some OUString and RTL_CONST refactoring

2012-10-07 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/836

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/36/836/1

Some OUString and RTL_CONST refactoring

Change-Id: I27709f12ef6e3448ed457bd0e9f2056979ba0291
---
M basctl/source/basicide/brkdlg.cxx
M basctl/source/basicide/macrodlg.cxx
M basctl/source/basicide/moduldl2.cxx
3 files changed, 92 insertions(+), 94 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/836
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I27709f12ef6e3448ed457bd0e9f2056979ba0291
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] ::rtl::OUString to OUString in basctl

2012-10-07 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/835

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/35/835/1

::rtl::OUString to OUString in basctl

Change-Id: If6a53fd69f8a99bafc7fc324911132dd51e67266
---
M basctl/source/basicide/linenumberwindow.cxx
M basctl/source/basicide/localizationmgr.cxx
2 files changed, 117 insertions(+), 117 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/835
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: If6a53fd69f8a99bafc7fc324911132dd51e67266
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] More ::rtl::OUString to OUString in basctl

2012-10-07 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/834

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/34/834/1

More ::rtl::OUString to OUString in basctl

Change-Id: Ie27a55e933462c644f315d0123978082054d79af
---
M basctl/source/basicide/bastype3.cxx
M basctl/source/basicide/bastypes.cxx
M basctl/source/basicide/brkdlg.cxx
M basctl/source/basicide/iderdll.cxx
4 files changed, 41 insertions(+), 42 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/834
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ie27a55e933462c644f315d0123978082054d79af
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] rtl::OUString to OUString in basctl

2012-10-04 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/767

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/67/767/1

rtl::OUString to OUString in basctl

Change-Id: Iaa56c5f8a15032c3102ad58011c80e3c86fe287c
---
M basctl/source/basicide/basides2.cxx
M basctl/source/basicide/basides3.cxx
M basctl/source/basicide/basobj3.cxx
M basctl/source/basicide/bastype2.cxx
M basctl/source/inc/bastypes.hxx
5 files changed, 119 insertions(+), 119 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/767
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Iaa56c5f8a15032c3102ad58011c80e3c86fe287c
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] rtl::OUString to OUString in basctl

2012-10-04 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/766

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/66/766/1

rtl::OUString to OUString in basctl

Change-Id: Ib7a68f22559e5970b32d83c924decd9f723fc288
---
M basctl/source/basicide/basides2.cxx
M basctl/source/basicide/basides3.cxx
M basctl/source/basicide/basobj3.cxx
M basctl/source/basicide/bastype2.cxx
M basctl/source/inc/bastypes.hxx
5 files changed, 119 insertions(+), 119 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/766
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ib7a68f22559e5970b32d83c924decd9f723fc288
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] More ::rtl::OUString cleanup in basctl

2012-10-03 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/760

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/60/760/1

More ::rtl::OUString cleanup in basctl

Change-Id: If7cefe8d2e188e65a465a25a5d5f77e6daebcd17
---
M basctl/source/basicide/basidesh.cxx
M basctl/source/basicide/basobj2.cxx
2 files changed, 46 insertions(+), 47 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/760
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: If7cefe8d2e188e65a465a25a5d5f77e6daebcd17
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] ::rtl::OUString to OUString in basctl

2012-10-02 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/748

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/48/748/1

::rtl::OUString to OUString in basctl

Change-Id: I34228049e15ee8a899a4c5e1484d7ed3bc541dd4
---
M basctl/source/basicide/baside3.cxx
M basctl/source/basicide/basidectrlr.cxx
M basctl/source/basicide/basides1.cxx
M basctl/source/basicide/bastype2.hxx
4 files changed, 114 insertions(+), 114 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/748
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I34228049e15ee8a899a4c5e1484d7ed3bc541dd4
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] OUString and RTL_CONSTASCII_US... cleanup in basctl

2012-10-01 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/741

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/41/741/1

OUString and RTL_CONSTASCII_US... cleanup in basctl

Change-Id: I440d245d013873ec2830280ad01a4d0625fc4c1a
---
M basctl/source/basicide/basicbox.cxx
M basctl/source/basicide/basicrenderable.cxx
M basctl/source/basicide/baside2.cxx
M basctl/source/basicide/baside2.hxx
4 files changed, 58 insertions(+), 58 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/741
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I440d245d013873ec2830280ad01a4d0625fc4c1a
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] ::rtl::OUString to OUString in basctl

2012-09-27 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/711

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/11/711/1

::rtl::OUString to OUString in basctl

Change-Id: I7be699102eab9cbf7184a5777a4b161db885adec
---
M basctl/source/basicide/unomodel.cxx
M basctl/source/basicide/unomodel.hxx
M basctl/source/inc/accessibledialogcontrolshape.hxx
M basctl/source/inc/baside3.hxx
M basctl/source/inc/dlgedobj.hxx
M basctl/source/inc/iderid.hxx
6 files changed, 26 insertions(+), 26 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/711
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I7be699102eab9cbf7184a5777a4b161db885adec
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] String to OUString in basctl

2012-09-26 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/706

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/06/706/1

String to OUString in basctl

Change-Id: I52ce4fcf4b02746df898c7fbbf57a58b274dd0b2
---
M basctl/source/basicide/baside2b.cxx
1 file changed, 29 insertions(+), 29 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/706
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I52ce4fcf4b02746df898c7fbbf57a58b274dd0b2
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] ::rtl::OUString cleanup in basctl

2012-09-26 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/705

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/05/705/1

::rtl::OUString cleanup in basctl

Change-Id: Icb6f04d6ad22f1652abbb399beb08645daf8b9c9
---
M avmedia/source/gstreamer/gstframegrabber.cxx
M basctl/source/inc/accessibledialogwindow.hxx
M basctl/source/inc/basidesh.hxx
M basctl/source/inc/dlged.hxx
4 files changed, 25 insertions(+), 25 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/705
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Icb6f04d6ad22f1652abbb399beb08645daf8b9c9
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] sal_Bool to bool conversion in accessibility

2012-09-26 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/701

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/01/701/1

sal_Bool to bool conversion in accessibility

Change-Id: I79967eea535dc4bd11e725dc854ae8a8f97a2905
---
M accessibility/inc/accessibility/helper/IComboListBoxHelper.hxx
M accessibility/inc/accessibility/helper/listboxhelper.hxx
M accessibility/source/standard/vclxaccessiblelist.cxx
3 files changed, 25 insertions(+), 25 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/701
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I79967eea535dc4bd11e725dc854ae8a8f97a2905
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] sal_Bool to bool and some rtl::OUStrings in avmedia

2012-09-25 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/697

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/97/697/1

sal_Bool to bool and some rtl::OUStrings in avmedia

Change-Id: Id58fd5d04f47302983782eb57736ff29d8f5303e
---
M avmedia/inc/avmedia/mediaitem.hxx
M avmedia/source/framework/mediaitem.cxx
M avmedia/source/gstreamer/gstframegrabber.cxx
M avmedia/source/gstreamer/gstframegrabber.hxx
M avmedia/source/win/player.hxx
5 files changed, 22 insertions(+), 22 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/697
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Id58fd5d04f47302983782eb57736ff29d8f5303e
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] ::rtl::OUString to OUString in basctl

2012-09-23 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/678

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/78/678/1

::rtl::OUString to OUString in basctl

Change-Id: I3fc3d463fbaefe31b3541502c9f3dfbd4d1db4f9
---
M basctl/source/accessibility/accessibledialogcontrolshape.cxx
M basctl/source/accessibility/accessibledialogwindow.cxx
2 files changed, 40 insertions(+), 40 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/678
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I3fc3d463fbaefe31b3541502c9f3dfbd4d1db4f9
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] End of ::rtl::OUString to OUString in avmedia

2012-09-22 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/675

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/75/675/1

End of ::rtl::OUString to OUString in avmedia

Change-Id: I1ac8f773ddb72b94d1371fe60948fb2782ddecd4
---
M avmedia/source/viewer/mediawindowbase_impl.hxx
M avmedia/source/win/framegrabber.cxx
M avmedia/source/win/framegrabber.hxx
M avmedia/source/win/window.cxx
M avmedia/source/win/window.hxx
5 files changed, 30 insertions(+), 30 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/675
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I1ac8f773ddb72b94d1371fe60948fb2782ddecd4
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] rtl::OUString to OUString in unotools

2012-09-21 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/670

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/70/670/1

rtl::OUString to OUString in unotools

Change-Id: I9d045c6947fa2acb86befdb9bf43c666f82e8858
---
M unotools/inc/unotools/accelcfg.hxx
M unotools/inc/unotools/atom.hxx
M unotools/inc/unotools/bootstrap.hxx
M unotools/inc/unotools/calendarwrapper.hxx
M unotools/inc/unotools/charclass.hxx
M unotools/source/config/useroptions.cxx
6 files changed, 29 insertions(+), 29 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/670
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I9d045c6947fa2acb86befdb9bf43c666f82e8858
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] ::rtl::OUString to OUString in avmedia

2012-09-21 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/668

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/68/668/1

::rtl::OUString to OUString in avmedia

Change-Id: Id62d30e33ad68ffa6d3199a181b002155f224732
---
M avmedia/source/quicktime/window.hxx
M avmedia/source/viewer/mediawindow.cxx
M avmedia/source/viewer/mediawindowbase_impl.cxx
3 files changed, 24 insertions(+), 24 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/668
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Id62d30e33ad68ffa6d3199a181b002155f224732
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] Some OUString cleanup and ::rtl::OUString to OUString in avm...

2012-09-18 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/645

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/45/645/1

Some OUString cleanup and ::rtl::OUString to OUString in avmedia

Change-Id: If79fffec7388e73fd85f5279e773af363c5f97e3
---
M avmedia/source/quicktime/framegrabber.mm
M avmedia/source/quicktime/manager.hxx
M avmedia/source/quicktime/manager.mm
M avmedia/source/quicktime/player.hxx
M avmedia/source/quicktime/player.mm
M avmedia/source/quicktime/quicktimeuno.mm
6 files changed, 35 insertions(+), 35 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/645
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: If79fffec7388e73fd85f5279e773af363c5f97e3
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] More ::rtl::OUString to OUString and some sal_Bool to bool i...

2012-09-18 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/644

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/44/644/1

More ::rtl::OUString to OUString and some sal_Bool to bool in avmedia

Change-Id: Ia3ed38eb017e02df7109e684bc59017f47af3543
---
M avmedia/source/gstreamer/gstplayer.hxx
M avmedia/source/gstreamer/gstuno.cxx
M avmedia/source/gstreamer/gstwindow.cxx
M avmedia/source/gstreamer/gstwindow.hxx
M avmedia/source/quicktime/framegrabber.hxx
5 files changed, 23 insertions(+), 23 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/644
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ia3ed38eb017e02df7109e684bc59017f47af3543
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] corrections ::rtl::OUString, sal_Bool and macros, in avmedia

2012-09-17 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/636

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/36/636/1

corrections ::rtl::OUString, sal_Bool and macros, in avmedia

Change-Id: Iae12f009a358ef8d648f094db968dae25f0c14a0
---
M avmedia/source/framework/soundhandler.cxx
M avmedia/source/win/manager.cxx
M avmedia/source/win/manager.hxx
M avmedia/source/win/player.cxx
M avmedia/source/win/player.hxx
M avmedia/source/win/winuno.cxx
6 files changed, 42 insertions(+), 45 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/636
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Iae12f009a358ef8d648f094db968dae25f0c14a0
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] More ::rtl::OUString to OUString in avmedia

2012-09-14 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/625

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/25/625/1

More ::rtl::OUString to OUString in avmedia

Change-Id: Ic5478199d8ff1cd79dc54e680e8a6c257e7d8325
---
M avmedia/source/gstreamer/gstframegrabber.hxx
M avmedia/source/gstreamer/gstmanager.cxx
M avmedia/source/gstreamer/gstmanager.hxx
M avmedia/source/gstreamer/gstplayer.cxx
4 files changed, 25 insertions(+), 25 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/625
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ic5478199d8ff1cd79dc54e680e8a6c257e7d8325
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] More ::rtl::OUString to OUString in avmedia

2012-09-14 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/621

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/21/621/1

More ::rtl::OUString to OUString in avmedia

Change-Id: I0e49d84b5a7aa47dc315735a8198ba7fdde0b4e7
---
M avmedia/source/framework/soundhandler.cxx
M avmedia/source/framework/soundhandler.hxx
M avmedia/source/gstreamer/gstframegrabber.cxx
3 files changed, 29 insertions(+), 29 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/621
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I0e49d84b5a7aa47dc315735a8198ba7fdde0b4e7
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] More ::rtl::OUString to OUString and RTL_CONSTASCII in avmed...

2012-09-13 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/610

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/10/610/1

More ::rtl::OUString to OUString and RTL_CONSTASCII in avmedia

Change-Id: I925862289cf5f9f41af5532bbbaf8ec0a4e5a66b
---
M avmedia/source/framework/mediaitem.cxx
M avmedia/source/framework/mediaplayer.cxx
M avmedia/source/framework/mediatoolbox.cxx
3 files changed, 29 insertions(+), 34 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/610
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I925862289cf5f9f41af5532bbbaf8ec0a4e5a66b
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] ::rtl::OUString to OUString in avmedia

2012-09-13 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/609

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/09/609/1

::rtl::OUString to OUString in avmedia

Change-Id: If4a7bef339a626fbfa9f0c1cc76801e77626f38f
---
M avmedia/inc/avmedia/mediaitem.hxx
M avmedia/inc/avmedia/mediaplayer.hxx
M avmedia/inc/avmedia/mediawindow.hxx
M avmedia/source/framework/mediacontrol.cxx
4 files changed, 16 insertions(+), 16 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/609
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: If4a7bef339a626fbfa9f0c1cc76801e77626f38f
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] Finished ::rtl::OUString to OUString in UnoControls

2012-09-12 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/601

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/01/601/1

Finished ::rtl::OUString to OUString in UnoControls

Change-Id: I48409908bd1639d6a69217c7f94ebce04464487f
---
M UnoControls/source/inc/progressmonitor.hxx
M UnoControls/source/inc/statusindicator.hxx
2 files changed, 18 insertions(+), 18 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/601
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I48409908bd1639d6a69217c7f94ebce04464487f
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] ::rtl::OUString to OUString in UnoControls

2012-09-11 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/597

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/97/597/1

::rtl::OUString to OUString in UnoControls

Change-Id: I12a95e61e7bf59c64fec7df98617926b774074ee
---
M UnoControls/inc/basecontainercontrol.hxx
M UnoControls/inc/basecontrol.hxx
M UnoControls/source/inc/framecontrol.hxx
M UnoControls/source/inc/progressbar.hxx
4 files changed, 15 insertions(+), 15 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/597
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I12a95e61e7bf59c64fec7df98617926b774074ee
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] ::rtl::OUString to OUString correction in accessibility

2012-09-08 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/589

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/89/589/1

::rtl::OUString to OUString correction in accessibility

Change-Id: Ib59e07ef5dcdd2f30bc5abee2e958cbda57e9629
---
M accessibility/bridge/source/java/WindowsAccessBridgeAdapter.cxx
M accessibility/inc/accessibility/extended/AccessibleBrowseBox.hxx
M accessibility/inc/accessibility/extended/AccessibleBrowseBoxBase.hxx
M accessibility/inc/accessibility/extended/AccessibleBrowseBoxCheckBoxCell.hxx
M accessibility/inc/accessibility/extended/AccessibleBrowseBoxHeaderBar.hxx
M accessibility/inc/accessibility/extended/AccessibleBrowseBoxHeaderCell.hxx
M accessibility/inc/accessibility/extended/AccessibleBrowseBoxTable.hxx
M accessibility/inc/accessibility/extended/AccessibleBrowseBoxTableCell.hxx
M accessibility/inc/accessibility/extended/AccessibleGridControl.hxx
M accessibility/inc/accessibility/extended/AccessibleGridControlBase.hxx
M accessibility/inc/accessibility/extended/AccessibleGridControlHeader.hxx
M accessibility/inc/accessibility/extended/AccessibleGridControlHeaderCell.hxx
M accessibility/inc/accessibility/extended/AccessibleGridControlTable.hxx
M accessibility/inc/accessibility/extended/AccessibleGridControlTableCell.hxx
M accessibility/inc/accessibility/extended/AccessibleToolPanelDeckTabBarItem.hxx
M accessibility/inc/accessibility/extended/accessibleeditbrowseboxcell.hxx
M accessibility/inc/accessibility/extended/accessibleiconchoicectrl.hxx
M accessibility/inc/accessibility/extended/accessibleiconchoicectrlentry.hxx
M accessibility/inc/accessibility/extended/accessiblelistbox.hxx
M accessibility/inc/accessibility/extended/accessiblelistboxentry.hxx
M accessibility/inc/accessibility/extended/accessibletabbar.hxx
M accessibility/inc/accessibility/extended/accessibletabbarpage.hxx
M accessibility/inc/accessibility/extended/accessibletabbarpagelist.hxx
M accessibility/inc/accessibility/extended/accessibletablistboxtable.hxx
M accessibility/inc/accessibility/extended/textwindowaccessibility.hxx
M accessibility/inc/accessibility/helper/accresmgr.hxx
M accessibility/inc/accessibility/helper/characterattributeshelper.hxx
M accessibility/inc/accessibility/standard/accessiblemenubasecomponent.hxx
M accessibility/inc/accessibility/standard/accessiblemenucomponent.hxx
M accessibility/inc/accessibility/standard/accessiblemenuitemcomponent.hxx
M accessibility/inc/accessibility/standard/vclxaccessiblebox.hxx
M accessibility/inc/accessibility/standard/vclxaccessiblebutton.hxx
M accessibility/inc/accessibility/standard/vclxaccessiblecheckbox.hxx
M accessibility/inc/accessibility/standard/vclxaccessiblecombobox.hxx
M accessibility/inc/accessibility/standard/vclxaccessibledropdowncombobox.hxx
M accessibility/inc/accessibility/standard/vclxaccessibledropdownlistbox.hxx
M accessibility/inc/accessibility/standard/vclxaccessibleedit.hxx
M accessibility/inc/accessibility/standard/vclxaccessiblefixedhyperlink.hxx
M accessibility/inc/accessibility/standard/vclxaccessiblefixedtext.hxx
M accessibility/inc/accessibility/standard/vclxaccessiblelist.hxx
M accessibility/inc/accessibility/standard/vclxaccessiblelistbox.hxx
M accessibility/inc/accessibility/standard/vclxaccessiblelistitem.hxx
M accessibility/inc/accessibility/standard/vclxaccessiblemenu.hxx
M accessibility/inc/accessibility/standard/vclxaccessiblemenubar.hxx
M accessibility/inc/accessibility/standard/vclxaccessiblemenuitem.hxx
M accessibility/inc/accessibility/standard/vclxaccessiblemenuseparator.hxx
M accessibility/inc/accessibility/standard/vclxaccessiblepopupmenu.hxx
M accessibility/inc/accessibility/standard/vclxaccessibleradiobutton.hxx
M accessibility/inc/accessibility/standard/vclxaccessiblescrollbar.hxx
M accessibility/inc/accessibility/standard/vclxaccessiblestatusbar.hxx
M accessibility/inc/accessibility/standard/vclxaccessiblestatusbaritem.hxx
M accessibility/inc/accessibility/standard/vclxaccessibletabcontrol.hxx
M accessibility/inc/accessibility/standard/vclxaccessibletabpage.hxx
M accessibility/inc/accessibility/standard/vclxaccessibletextcomponent.hxx
M accessibility/inc/accessibility/standard/vclxaccessibletextfield.hxx
M accessibility/inc/accessibility/standard/vclxaccessibletoolbox.hxx
M accessibility/inc/accessibility/standard/vclxaccessibletoolboxitem.hxx
M accessibility/source/extended/accessibletabbarpage.cxx
M accessibility/source/standard/vclxaccessibletextcomponent.cxx
M accessibility/source/standard/vclxaccessibletoolboxitem.cxx
60 files changed, 306 insertions(+), 307 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/589
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ib59e07ef5dcdd2f30bc5abee2e958cbda57e9629
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
Libre

[PATCH] OUString cleanup in accessibility

2012-09-07 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/583

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/83/583/1

OUString cleanup in accessibility

Change-Id: Ifceaa764231306c1f542183afc2e852cc418
---
M accessibility/source/extended/AccessibleBrowseBox.cxx
M accessibility/source/extended/AccessibleBrowseBoxBase.cxx
M accessibility/source/extended/AccessibleBrowseBoxCheckBoxCell.cxx
M accessibility/source/extended/AccessibleBrowseBoxHeaderBar.cxx
M accessibility/source/extended/AccessibleBrowseBoxHeaderCell.cxx
M accessibility/source/extended/AccessibleBrowseBoxTable.cxx
M accessibility/source/extended/AccessibleBrowseBoxTableBase.cxx
M accessibility/source/extended/AccessibleBrowseBoxTableCell.cxx
M accessibility/source/extended/AccessibleGridControl.cxx
M accessibility/source/extended/AccessibleGridControlBase.cxx
M accessibility/source/extended/AccessibleGridControlHeader.cxx
M accessibility/source/extended/AccessibleGridControlHeaderCell.cxx
M accessibility/source/extended/AccessibleGridControlTable.cxx
M accessibility/source/extended/AccessibleGridControlTableBase.cxx
M accessibility/source/extended/AccessibleGridControlTableCell.cxx
M accessibility/source/extended/AccessibleToolPanelDeck.cxx
M accessibility/source/extended/AccessibleToolPanelDeckTabBar.cxx
M accessibility/source/extended/AccessibleToolPanelDeckTabBarItem.cxx
M accessibility/source/extended/accessiblebrowseboxcell.cxx
M accessibility/source/extended/accessibleeditbrowseboxcell.cxx
M accessibility/source/extended/accessibleiconchoicectrl.cxx
M accessibility/source/extended/accessibleiconchoicectrlentry.cxx
M accessibility/source/extended/accessiblelistbox.cxx
M accessibility/source/extended/accessiblelistboxentry.cxx
M accessibility/source/extended/accessibletabbar.cxx
M accessibility/source/extended/accessibletabbarpage.cxx
M accessibility/source/extended/accessibletabbarpagelist.cxx
M accessibility/source/extended/accessibletablistboxtable.cxx
M accessibility/source/extended/textwindowaccessibility.cxx
M accessibility/source/helper/accresmgr.cxx
M accessibility/source/helper/characterattributeshelper.cxx
M accessibility/source/standard/accessiblemenubasecomponent.cxx
M accessibility/source/standard/accessiblemenucomponent.cxx
M accessibility/source/standard/accessiblemenuitemcomponent.cxx
M accessibility/source/standard/vclxaccessiblebox.cxx
M accessibility/source/standard/vclxaccessiblebutton.cxx
M accessibility/source/standard/vclxaccessiblecheckbox.cxx
M accessibility/source/standard/vclxaccessiblecombobox.cxx
M accessibility/source/standard/vclxaccessibledropdowncombobox.cxx
M accessibility/source/standard/vclxaccessibledropdownlistbox.cxx
M accessibility/source/standard/vclxaccessibleedit.cxx
M accessibility/source/standard/vclxaccessiblefixedhyperlink.cxx
M accessibility/source/standard/vclxaccessiblefixedtext.cxx
M accessibility/source/standard/vclxaccessiblelist.cxx
M accessibility/source/standard/vclxaccessiblelistbox.cxx
M accessibility/source/standard/vclxaccessiblelistitem.cxx
M accessibility/source/standard/vclxaccessiblemenu.cxx
M accessibility/source/standard/vclxaccessiblemenubar.cxx
M accessibility/source/standard/vclxaccessiblemenuitem.cxx
M accessibility/source/standard/vclxaccessiblemenuseparator.cxx
M accessibility/source/standard/vclxaccessiblepopupmenu.cxx
M accessibility/source/standard/vclxaccessibleradiobutton.cxx
M accessibility/source/standard/vclxaccessiblescrollbar.cxx
M accessibility/source/standard/vclxaccessiblestatusbar.cxx
M accessibility/source/standard/vclxaccessiblestatusbaritem.cxx
M accessibility/source/standard/vclxaccessibletabcontrol.cxx
M accessibility/source/standard/vclxaccessibletabpage.cxx
M accessibility/source/standard/vclxaccessibletextfield.cxx
M accessibility/source/standard/vclxaccessibletoolbox.cxx
M accessibility/source/standard/vclxaccessibletoolboxitem.cxx
60 files changed, 559 insertions(+), 605 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/583
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ifceaa764231306c1f542183afc2e852cc418
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] OUString cleanup in animations

2012-09-07 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/584

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/84/584/1

OUString cleanup in animations

Change-Id: Ib858f9fa709d72539f71a6473a4ecb519d68e98e
---
M animations/source/animcore/animcore.cxx
M animations/source/animcore/factreg.hxx
M animations/source/animcore/targetpropertiescreator.cxx
3 files changed, 22 insertions(+), 23 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/584
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ib858f9fa709d72539f71a6473a4ecb519d68e98e
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania 

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice