summaryrefslogtreecommitdiff
path: root/sd/source/ui/dlg/tpaction.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/dlg/tpaction.cxx')
-rw-r--r--sd/source/ui/dlg/tpaction.cxx34
1 files changed, 17 insertions, 17 deletions
diff --git a/sd/source/ui/dlg/tpaction.cxx b/sd/source/ui/dlg/tpaction.cxx
index f29a6cf7764b..d9b0b7be6a74 100644
--- a/sd/source/ui/dlg/tpaction.cxx
+++ b/sd/source/ui/dlg/tpaction.cxx
@@ -69,8 +69,8 @@ constexpr OUStringLiteral pStarDrawXMLContent( u"content.xml" );
* Constructor of the Tab dialog: appends the pages to the dialog
*/
SdActionDlg::SdActionDlg(weld::Window* pParent, const SfxItemSet* pAttr, ::sd::View const * pView)
- : SfxSingleTabDialogController(pParent, pAttr, "modules/simpress/ui/interactiondialog.ui",
- "InteractionDialog")
+ : SfxSingleTabDialogController(pParent, pAttr, u"modules/simpress/ui/interactiondialog.ui"_ustr,
+ u"InteractionDialog"_ustr)
{
std::unique_ptr<SfxTabPage> xNewPage = SdTPAction::Create(get_content_area(), this, *pAttr);
@@ -85,23 +85,23 @@ SdActionDlg::SdActionDlg(weld::Window* pParent, const SfxItemSet* pAttr, ::sd::V
* Action-TabPage
*/
SdTPAction::SdTPAction(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rInAttrs)
- : SfxTabPage(pPage, pController, "modules/simpress/ui/interactionpage.ui", "InteractionPage", &rInAttrs)
+ : SfxTabPage(pPage, pController, u"modules/simpress/ui/interactionpage.ui"_ustr, u"InteractionPage"_ustr, &rInAttrs)
, mpView(nullptr)
, mpDoc(nullptr)
, bTreeUpdated(false)
- , m_xLbAction(m_xBuilder->weld_combo_box("listbox"))
- , m_xFtTree(m_xBuilder->weld_label("fttree"))
- , m_xLbTree(new SdPageObjsTLV(m_xBuilder->weld_tree_view("tree")))
- , m_xLbTreeDocument(new SdPageObjsTLV(m_xBuilder->weld_tree_view("treedoc")))
- , m_xLbOLEAction(m_xBuilder->weld_tree_view("oleaction"))
- , m_xFrame(m_xBuilder->weld_frame("frame"))
- , m_xEdtSound(m_xBuilder->weld_entry("sound"))
- , m_xEdtBookmark(m_xBuilder->weld_entry("bookmark"))
- , m_xEdtDocument(m_xBuilder->weld_entry("document"))
- , m_xEdtProgram(m_xBuilder->weld_entry("program"))
- , m_xEdtMacro(m_xBuilder->weld_entry("macro"))
- , m_xBtnSearch(m_xBuilder->weld_button("browse"))
- , m_xBtnSeek(m_xBuilder->weld_button("find"))
+ , m_xLbAction(m_xBuilder->weld_combo_box(u"listbox"_ustr))
+ , m_xFtTree(m_xBuilder->weld_label(u"fttree"_ustr))
+ , m_xLbTree(new SdPageObjsTLV(m_xBuilder->weld_tree_view(u"tree"_ustr)))
+ , m_xLbTreeDocument(new SdPageObjsTLV(m_xBuilder->weld_tree_view(u"treedoc"_ustr)))
+ , m_xLbOLEAction(m_xBuilder->weld_tree_view(u"oleaction"_ustr))
+ , m_xFrame(m_xBuilder->weld_frame(u"frame"_ustr))
+ , m_xEdtSound(m_xBuilder->weld_entry(u"sound"_ustr))
+ , m_xEdtBookmark(m_xBuilder->weld_entry(u"bookmark"_ustr))
+ , m_xEdtDocument(m_xBuilder->weld_entry(u"document"_ustr))
+ , m_xEdtProgram(m_xBuilder->weld_entry(u"program"_ustr))
+ , m_xEdtMacro(m_xBuilder->weld_entry(u"macro"_ustr))
+ , m_xBtnSearch(m_xBuilder->weld_button(u"browse"_ustr))
+ , m_xBtnSeek(m_xBuilder->weld_button(u"find"_ustr))
{
m_xLbOLEAction->set_size_request(m_xLbOLEAction->get_approximate_digit_width() * 48,
m_xLbOLEAction->get_height_rows(12));
@@ -408,7 +408,7 @@ void SdTPAction::OpenFileDialog()
// links on the desktop to directories.
aFileDialog.AddFilter (
SfxResId(STR_SFX_FILTERNAME_ALL),
- "*.*");
+ u"*.*"_ustr);
if( aFileDialog.Execute() == ERRCODE_NONE )
{