String -> OUString
Change-Id: I244de2137f6a7b26f21de24ff9273c5c3672d12e
This commit is contained in:
@@ -151,7 +151,7 @@ class SwScrollNaviPopup : public SfxPopupWindow
|
|||||||
FixedInfo aInfoField;
|
FixedInfo aInfoField;
|
||||||
ImageList aIList;
|
ImageList aIList;
|
||||||
|
|
||||||
String sQuickHelp[2 * NID_COUNT];
|
OUString sQuickHelp[2 * NID_COUNT];
|
||||||
|
|
||||||
void ApplyImageList();
|
void ApplyImageList();
|
||||||
|
|
||||||
@@ -179,7 +179,7 @@ class SwNaviImageButton : public ImageButton
|
|||||||
{
|
{
|
||||||
SwScrollNaviPopup* pPopup;
|
SwScrollNaviPopup* pPopup;
|
||||||
Image aImage;
|
Image aImage;
|
||||||
String sQuickText;
|
OUString sQuickText;
|
||||||
SfxPopupWindow* pPopupWindow;
|
SfxPopupWindow* pPopupWindow;
|
||||||
SfxPopupWindow* pFloatingWindow;
|
SfxPopupWindow* pFloatingWindow;
|
||||||
::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame > m_xFrame;
|
::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame > m_xFrame;
|
||||||
|
@@ -467,13 +467,13 @@ SwScrollNaviPopup::SwScrollNaviPopup( sal_uInt16 nId, const Reference< XFrame >&
|
|||||||
for( i = 0; i < NID_COUNT; i++)
|
for( i = 0; i < NID_COUNT; i++)
|
||||||
{
|
{
|
||||||
sal_uInt16 nNaviId = aNavigationInsertIds[i];
|
sal_uInt16 nNaviId = aNavigationInsertIds[i];
|
||||||
String sText;
|
OUString sText;
|
||||||
ToolBoxItemBits nTbxBits = 0;
|
ToolBoxItemBits nTbxBits = 0;
|
||||||
if((NID_PREV != nNaviId) && (NID_NEXT != nNaviId))
|
if((NID_PREV != nNaviId) && (NID_NEXT != nNaviId))
|
||||||
{
|
{
|
||||||
// -2, there's no string for Next/Prev
|
// -2, there's no string for Next/Prev
|
||||||
sal_uInt16 nResStr = ST_TBL - 2 + nNaviId - NID_START;
|
sal_uInt16 nResStr = ST_TBL - 2 + nNaviId - NID_START;
|
||||||
sText = String(SW_RES(nResStr));
|
sText = SW_RESSTR(nResStr);
|
||||||
nTbxBits = TIB_CHECKABLE;
|
nTbxBits = TIB_CHECKABLE;
|
||||||
}
|
}
|
||||||
aToolBox.InsertItem(nNaviId, sText, nTbxBits);
|
aToolBox.InsertItem(nNaviId, sText, nTbxBits);
|
||||||
@@ -487,7 +487,7 @@ SwScrollNaviPopup::SwScrollNaviPopup( sal_uInt16 nId, const Reference< XFrame >&
|
|||||||
// these are global strings
|
// these are global strings
|
||||||
for( i = 0; i < 2 * NID_COUNT; i++)
|
for( i = 0; i < 2 * NID_COUNT; i++)
|
||||||
{
|
{
|
||||||
sQuickHelp[i] = String(SW_RES(STR_IMGBTN_START + i));
|
sQuickHelp[i] = SW_RESSTR(STR_IMGBTN_START + i);
|
||||||
}
|
}
|
||||||
|
|
||||||
Size aImgSize = aIList.GetImageSize();
|
Size aImgSize = aIList.GetImageSize();
|
||||||
@@ -595,7 +595,7 @@ String SwScrollNaviPopup::GetQuickHelpText(sal_Bool bNext)
|
|||||||
nResId += SwView::GetMoveType() - NID_START;
|
nResId += SwView::GetMoveType() - NID_START;
|
||||||
if(!bNext)
|
if(!bNext)
|
||||||
nResId += NID_COUNT;
|
nResId += NID_COUNT;
|
||||||
return String(SW_RES(nResId));
|
return SW_RESSTR(nResId);
|
||||||
}
|
}
|
||||||
|
|
||||||
void SwNaviImageButton::Click()
|
void SwNaviImageButton::Click()
|
||||||
@@ -660,7 +660,7 @@ SwNaviImageButton::SwNaviImageButton(
|
|||||||
ImageButton(pParent, SW_RES(BTN_NAVI)),
|
ImageButton(pParent, SW_RES(BTN_NAVI)),
|
||||||
pPopup(0),
|
pPopup(0),
|
||||||
aImage(SW_RES(IMG_BTN)),
|
aImage(SW_RES(IMG_BTN)),
|
||||||
sQuickText(SW_RES(ST_QUICK)),
|
sQuickText(SW_RESSTR(ST_QUICK)),
|
||||||
pPopupWindow(0),
|
pPopupWindow(0),
|
||||||
pFloatingWindow(0),
|
pFloatingWindow(0),
|
||||||
m_xFrame( rFrame )
|
m_xFrame( rFrame )
|
||||||
@@ -715,8 +715,7 @@ SwZoomBox_Impl::SwZoomBox_Impl(
|
|||||||
{ 25, 50, 75, 100, 150, 200 };
|
{ 25, 50, 75, 100, 150, 200 };
|
||||||
for(sal_uInt16 i = 0; i < sizeof(aZoomValues)/sizeof(sal_uInt16); i++)
|
for(sal_uInt16 i = 0; i < sizeof(aZoomValues)/sizeof(sal_uInt16); i++)
|
||||||
{
|
{
|
||||||
String sEntry = OUString::number(aZoomValues[i]);
|
OUString sEntry = OUString::number(aZoomValues[i]) + "%";
|
||||||
sEntry += '%';
|
|
||||||
InsertEntry(sEntry);
|
InsertEntry(sEntry);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -728,8 +727,8 @@ void SwZoomBox_Impl::Select()
|
|||||||
{
|
{
|
||||||
if ( !IsTravelSelect() )
|
if ( !IsTravelSelect() )
|
||||||
{
|
{
|
||||||
String sEntry(comphelper::string::remove(GetText(), '%'));
|
OUString sEntry(comphelper::string::remove(GetText(), '%'));
|
||||||
sal_uInt16 nZoom = (sal_uInt16)sEntry.ToInt32();
|
sal_uInt16 nZoom = (sal_uInt16)sEntry.toInt32();
|
||||||
if(nZoom < MINZOOM)
|
if(nZoom < MINZOOM)
|
||||||
nZoom = MINZOOM;
|
nZoom = MINZOOM;
|
||||||
if(nZoom > MAXZOOM)
|
if(nZoom > MAXZOOM)
|
||||||
@@ -831,8 +830,8 @@ void SwPreviewZoomControl::StateChanged( sal_uInt16 /*nSID*/,
|
|||||||
SwZoomBox_Impl* pBox = (SwZoomBox_Impl*)GetToolBox().GetItemWindow( GetId() );
|
SwZoomBox_Impl* pBox = (SwZoomBox_Impl*)GetToolBox().GetItemWindow( GetId() );
|
||||||
if(SFX_ITEM_AVAILABLE <= eState)
|
if(SFX_ITEM_AVAILABLE <= eState)
|
||||||
{
|
{
|
||||||
String sZoom(OUString::number(((const SfxUInt16Item*)pState)->GetValue()));
|
OUString sZoom(OUString::number(((const SfxUInt16Item*)pState)->GetValue()));
|
||||||
sZoom += '%';
|
sZoom += "%";
|
||||||
pBox->SetText(sZoom);
|
pBox->SetText(sZoom);
|
||||||
pBox->SaveValue();
|
pBox->SaveValue();
|
||||||
}
|
}
|
||||||
|
@@ -63,11 +63,11 @@ void SwTextShell::ExecGlossary(SfxRequest &rReq)
|
|||||||
case FN_NEW_GLOSSARY:
|
case FN_NEW_GLOSSARY:
|
||||||
if(pItem && pArgs->Count() == 3 )
|
if(pItem && pArgs->Count() == 3 )
|
||||||
{
|
{
|
||||||
String aGroup = (( const SfxStringItem *)pItem)->GetValue();
|
OUString aGroup = (( const SfxStringItem *)pItem)->GetValue();
|
||||||
String aName;
|
OUString aName;
|
||||||
if(SFX_ITEM_SET == pArgs->GetItemState(FN_PARAM_1, sal_False, &pItem ))
|
if(SFX_ITEM_SET == pArgs->GetItemState(FN_PARAM_1, sal_False, &pItem ))
|
||||||
aName = (( const SfxStringItem *)pItem)->GetValue();
|
aName = (( const SfxStringItem *)pItem)->GetValue();
|
||||||
String aShortName;
|
OUString aShortName;
|
||||||
if(SFX_ITEM_SET == pArgs->GetItemState(FN_PARAM_2, sal_False, &pItem ))
|
if(SFX_ITEM_SET == pArgs->GetItemState(FN_PARAM_2, sal_False, &pItem ))
|
||||||
aShortName = (( const SfxStringItem *)pItem)->GetValue();
|
aShortName = (( const SfxStringItem *)pItem)->GetValue();
|
||||||
|
|
||||||
@@ -86,7 +86,7 @@ void SwTextShell::ExecGlossary(SfxRequest &rReq)
|
|||||||
case FN_SET_ACT_GLOSSARY:
|
case FN_SET_ACT_GLOSSARY:
|
||||||
if(pItem)
|
if(pItem)
|
||||||
{
|
{
|
||||||
String aGroup = (( const SfxStringItem *)pItem)->GetValue();
|
OUString aGroup = (( const SfxStringItem *)pItem)->GetValue();
|
||||||
SwAbstractDialogFactory* pFact = SwAbstractDialogFactory::Create();
|
SwAbstractDialogFactory* pFact = SwAbstractDialogFactory::Create();
|
||||||
OSL_ENSURE(pFact, "Dialogdiet fail!");
|
OSL_ENSURE(pFact, "Dialogdiet fail!");
|
||||||
::GlossarySetActGroup fnSetActGroup = pFact->SetGlossaryActGroupFunc();
|
::GlossarySetActGroup fnSetActGroup = pFact->SetGlossaryActGroupFunc();
|
||||||
@@ -99,8 +99,8 @@ void SwTextShell::ExecGlossary(SfxRequest &rReq)
|
|||||||
{
|
{
|
||||||
if(pItem && pArgs->Count() > 1)
|
if(pItem && pArgs->Count() > 1)
|
||||||
{
|
{
|
||||||
String aGroup = (( const SfxStringItem *)pItem)->GetValue();
|
OUString aGroup = (( const SfxStringItem *)pItem)->GetValue();
|
||||||
String aName;
|
OUString aName;
|
||||||
if(SFX_ITEM_SET == pArgs->GetItemState(FN_PARAM_1, sal_False, &pItem ))
|
if(SFX_ITEM_SET == pArgs->GetItemState(FN_PARAM_1, sal_False, &pItem ))
|
||||||
aName = (( const SfxStringItem *)pItem)->GetValue();
|
aName = (( const SfxStringItem *)pItem)->GetValue();
|
||||||
SwAbstractDialogFactory* pFact = SwAbstractDialogFactory::Create();
|
SwAbstractDialogFactory* pFact = SwAbstractDialogFactory::Create();
|
||||||
|
Reference in New Issue
Block a user