Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
0cd21c2b
Kaydet (Commit)
0cd21c2b
authored
Eyl 17, 2013
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
drop intermediate Strings
Change-Id: I7f730d4f5329525eda9f78514dcaa3788149d077
üst
f2be92b6
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
20 additions
and
21 deletions
+20
-21
app.cxx
desktop/source/app/app.cxx
+5
-5
dp_gui_dialog2.cxx
desktop/source/deployment/gui/dp_gui_dialog2.cxx
+1
-2
dp_gui_updateinstalldialog.cxx
desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx
+8
-8
headermenucontroller.cxx
framework/source/uielement/headermenucontroller.cxx
+1
-1
langselectionmenucontroller.cxx
framework/source/uielement/langselectionmenucontroller.cxx
+3
-3
toolbarsmenucontroller.cxx
framework/source/uielement/toolbarsmenucontroller.cxx
+1
-1
genericunodialog.cxx
svtools/source/uno/genericunodialog.cxx
+1
-1
No files found.
desktop/source/app/app.cxx
Dosyayı görüntüle @
0cd21c2b
...
...
@@ -363,7 +363,7 @@ OUString GetMsgString(
{
ResMgr
*
resMgr
=
Desktop
::
GetDesktopResManager
();
if
(
resMgr
)
return
OUString
(
ResId
(
nId
,
*
resMgr
)
);
return
ResId
(
nId
,
*
resMgr
).
toString
(
);
}
return
aFallbackMsg
;
}
...
...
@@ -391,7 +391,7 @@ OUString MakeStartupConfigAccessErrorMessage( OUString const & aInternalErrMsg )
ResMgr
*
pResMgr
=
Desktop
::
GetDesktopResManager
();
if
(
pResMgr
)
aDiagnosticMessage
.
append
(
OUString
(
ResId
(
STR_BOOTSTRAP_ERR_CFG_DATAACCESS
,
*
pResMgr
)
)
);
aDiagnosticMessage
.
append
(
ResId
(
STR_BOOTSTRAP_ERR_CFG_DATAACCESS
,
*
pResMgr
).
toString
(
)
);
else
aDiagnosticMessage
.
appendAscii
(
"The program cannot be started."
);
...
...
@@ -399,7 +399,7 @@ OUString MakeStartupConfigAccessErrorMessage( OUString const & aInternalErrMsg )
{
aDiagnosticMessage
.
appendAscii
(
"
\n\n
"
);
if
(
pResMgr
)
aDiagnosticMessage
.
append
(
OUString
(
ResId
(
STR_INTERNAL_ERRMSG
,
*
pResMgr
)
)
);
aDiagnosticMessage
.
append
(
ResId
(
STR_INTERNAL_ERRMSG
,
*
pResMgr
).
toString
(
)
);
else
aDiagnosticMessage
.
appendAscii
(
"The following internal error has occurred:
\n\n
"
);
aDiagnosticMessage
.
append
(
aInternalErrMsg
);
...
...
@@ -1169,7 +1169,7 @@ void restartOnMac(bool passArguments) {
#if HAVE_FEATURE_MACOSX_SANDBOX
(
void
)
passArguments
;
// avoid warnings
ResMgr
*
resMgr
=
Desktop
::
GetDesktopResManager
();
OUString
aMessage
=
OUString
(
ResId
(
STR_LO_MUST_BE_RESTARTED
,
*
resMgr
)
);
OUString
aMessage
=
ResId
(
STR_LO_MUST_BE_RESTARTED
,
*
resMgr
).
toString
(
);
ErrorBox
aRestartBox
(
NULL
,
WB_OK
,
aMessage
);
aRestartBox
.
Execute
();
...
...
@@ -1494,7 +1494,7 @@ int Desktop::Main()
// create title string
LanguageTag
aLocale
(
LANGUAGE_SYSTEM
);
ResMgr
*
pLabelResMgr
=
ResMgr
::
SearchCreateResMgr
(
"ofa"
,
aLocale
);
OUString
aTitle
=
pLabelResMgr
?
OUString
(
ResId
(
RID_APPTITLE
,
*
pLabelResMgr
)
)
:
OUString
();
OUString
aTitle
=
pLabelResMgr
?
ResId
(
RID_APPTITLE
,
*
pLabelResMgr
).
toString
(
)
:
OUString
();
delete
pLabelResMgr
;
#ifdef DBG_UTIL
...
...
desktop/source/deployment/gui/dp_gui_dialog2.cxx
Dosyayı görüntüle @
0cd21c2b
...
...
@@ -96,8 +96,7 @@ struct StrAllFiles : public rtl::StaticWithInit< OUString, StrAllFiles >
const
SolarMutexGuard
guard
;
::
std
::
auto_ptr
<
ResMgr
>
const
resmgr
(
ResMgr
::
CreateResMgr
(
"fps_office"
)
);
OSL_ASSERT
(
resmgr
.
get
()
!=
0
);
OUString
ret
(
ResId
(
STR_FILTERNAME_ALL
,
*
resmgr
.
get
()
)
);
return
ret
;
return
ResId
(
STR_FILTERNAME_ALL
,
*
resmgr
.
get
()).
toString
();
}
};
...
...
desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx
Dosyayı görüntüle @
0cd21c2b
...
...
@@ -217,14 +217,14 @@ UpdateInstallDialog::UpdateInstallDialog(
m_bError
(
false
),
m_bNoEntry
(
true
),
m_bActivated
(
false
),
m_sInstalling
(
OUString
(
DpGuiResId
(
RID_DLG_UPDATE_INSTALL_INSTALLING
)
)),
m_sFinished
(
OUString
(
DpGuiResId
(
RID_DLG_UPDATE_INSTALL_FINISHED
)
)),
m_sNoErrors
(
OUString
(
DpGuiResId
(
RID_DLG_UPDATE_INSTALL_NO_ERRORS
)
)),
m_sErrorDownload
(
OUString
(
DpGuiResId
(
RID_DLG_UPDATE_INSTALL_ERROR_DOWNLOAD
)
)),
m_sErrorInstallation
(
OUString
(
DpGuiResId
(
RID_DLG_UPDATE_INSTALL_ERROR_INSTALLATION
)
)),
m_sErrorLicenseDeclined
(
OUString
(
DpGuiResId
(
RID_DLG_UPDATE_INSTALL_ERROR_LIC_DECLINED
)
)),
m_sNoInstall
(
OUString
(
DpGuiResId
(
RID_DLG_UPDATE_INSTALL_EXTENSION_NOINSTALL
)
)),
m_sThisErrorOccurred
(
OUString
(
DpGuiResId
(
RID_DLG_UPDATE_INSTALL_THIS_ERROR_OCCURRED
)
)),
m_sInstalling
(
DPGUI_RESSTR
(
RID_DLG_UPDATE_INSTALL_INSTALLING
)),
m_sFinished
(
DPGUI_RESSTR
(
RID_DLG_UPDATE_INSTALL_FINISHED
)),
m_sNoErrors
(
DPGUI_RESSTR
(
RID_DLG_UPDATE_INSTALL_NO_ERRORS
)),
m_sErrorDownload
(
DPGUI_RESSTR
(
RID_DLG_UPDATE_INSTALL_ERROR_DOWNLOAD
)),
m_sErrorInstallation
(
DPGUI_RESSTR
(
RID_DLG_UPDATE_INSTALL_ERROR_INSTALLATION
)),
m_sErrorLicenseDeclined
(
DPGUI_RESSTR
(
RID_DLG_UPDATE_INSTALL_ERROR_LIC_DECLINED
)),
m_sNoInstall
(
DPGUI_RESSTR
(
RID_DLG_UPDATE_INSTALL_EXTENSION_NOINSTALL
)),
m_sThisErrorOccurred
(
DPGUI_RESSTR
(
RID_DLG_UPDATE_INSTALL_THIS_ERROR_OCCURRED
)),
m_ft_action
(
this
,
DpGuiResId
(
RID_DLG_UPDATE_INSTALL_DOWNLOADING
)),
m_statusbar
(
this
,
DpGuiResId
(
RID_DLG_UPDATE_INSTALL_STATUSBAR
)),
m_ft_extension_name
(
this
,
DpGuiResId
(
RID_DLG_UPDATE_INSTALL_EXTENSION_NAME
)),
...
...
framework/source/uielement/headermenucontroller.cxx
Dosyayı görüntüle @
0cd21c2b
...
...
@@ -162,7 +162,7 @@ void HeaderMenuController::fillPopupMenu( const Reference< ::com::sun::star::fra
if
(
bAllOneState
&&
(
nCount
>
1
))
{
// Insert special item for all command
pVCLPopupMenu
->
InsertItem
(
ALL_MENUITEM_ID
,
OUString
(
FwlResId
(
STR_MENU_HEADFOOTALL
)
),
0
,
OString
(),
0
);
pVCLPopupMenu
->
InsertItem
(
ALL_MENUITEM_ID
,
FwlResId
(
STR_MENU_HEADFOOTALL
).
toString
(
),
0
,
OString
(),
0
);
OUStringBuffer
aStrBuf
(
aCmd
);
aStrBuf
.
appendAscii
(
"?On:bool="
);
...
...
framework/source/uielement/langselectionmenucontroller.cxx
Dosyayı görüntüle @
0cd21c2b
...
...
@@ -261,19 +261,19 @@ void LanguageSelectionMenuController::fillPopupMenu( Reference< css::awt::XPopup
// entry for LANGUAGE_NONE
++
nItemId
;
pPopupMenu
->
InsertItem
(
nItemId
,
OUString
(
FwlResId
(
STR_LANGSTATUS_NONE
)
)
);
pPopupMenu
->
InsertItem
(
nItemId
,
FwlResId
(
STR_LANGSTATUS_NONE
).
toString
(
)
);
aCmd
=
aCmd_Language
+
"LANGUAGE_NONE"
;
pPopupMenu
->
SetItemCommand
(
nItemId
,
aCmd
);
// entry for 'Reset to default language'
++
nItemId
;
pPopupMenu
->
InsertItem
(
nItemId
,
OUString
(
FwlResId
(
STR_RESET_TO_DEFAULT_LANGUAGE
)
)
);
pPopupMenu
->
InsertItem
(
nItemId
,
FwlResId
(
STR_RESET_TO_DEFAULT_LANGUAGE
).
toString
(
)
);
aCmd
=
aCmd_Language
+
"RESET_LANGUAGES"
;
pPopupMenu
->
SetItemCommand
(
nItemId
,
aCmd
);
// entry for opening the Format/Character dialog
++
nItemId
;
pPopupMenu
->
InsertItem
(
nItemId
,
OUString
(
FwlResId
(
STR_LANGSTATUS_MORE
)
));
pPopupMenu
->
InsertItem
(
nItemId
,
FwlResId
(
STR_LANGSTATUS_MORE
).
toString
(
));
pPopupMenu
->
SetItemCommand
(
nItemId
,
aCmd_Dialog
);
}
...
...
framework/source/uielement/toolbarsmenucontroller.cxx
Dosyayı görüntüle @
0cd21c2b
...
...
@@ -519,7 +519,7 @@ void ToolbarsMenuController::fillPopupMenu( Reference< css::awt::XPopupMenu >& r
}
}
OUString
aLabelStr
(
FwkResId
(
STR_RESTORE_TOOLBARS
));
OUString
aLabelStr
(
FWK_RESSTR
(
STR_RESTORE_TOOLBARS
));
OUString
aRestoreCmd
(
CMD_RESTOREVISIBILITY
);
addCommand
(
m_xPopupMenu
,
aRestoreCmd
,
aLabelStr
);
}
...
...
svtools/source/uno/genericunodialog.cxx
Dosyayı görüntüle @
0cd21c2b
...
...
@@ -121,7 +121,7 @@ void OGenericUnoDialog::setFastPropertyValue_NoBroadcast( sal_Int32 nHandle, con
m_bTitleAmbiguous
=
sal_False
;
if
(
m_pDialog
)
m_pDialog
->
SetText
(
OUString
(
m_sTitle
)
);
m_pDialog
->
SetText
(
m_sTitle
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment