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
369eb9bf
Kaydet (Commit)
369eb9bf
authored
Kas 15, 2014
tarafından
Miklos Vajna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
TabDialog ctor: take an OUString
Change-Id: Ie390fb9debe3a80b3ebc5e609119723c78eadba2
üst
6be63430
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
tabdlg.hxx
include/vcl/tabdlg.hxx
+1
-1
tabdlg.cxx
sfx2/source/dialog/tabdlg.cxx
+2
-2
tabdlg.cxx
vcl/source/window/tabdlg.cxx
+2
-2
No files found.
include/vcl/tabdlg.hxx
Dosyayı görüntüle @
369eb9bf
...
...
@@ -40,7 +40,7 @@ private:
public
:
TabDialog
(
vcl
::
Window
*
pParent
,
WinBits
nStyle
=
WB_STDTABDIALOG
);
TabDialog
(
vcl
::
Window
*
pParent
,
const
OString
&
rID
,
const
OUString
&
rUIXMLDescription
);
TabDialog
(
vcl
::
Window
*
pParent
,
const
O
U
String
&
rID
,
const
OUString
&
rUIXMLDescription
);
virtual
~
TabDialog
();
virtual
void
StateChanged
(
StateChangedType
nStateChange
)
SAL_OVERRIDE
;
...
...
sfx2/source/dialog/tabdlg.cxx
Dosyayı görüntüle @
369eb9bf
...
...
@@ -316,7 +316,7 @@ SfxTabDialog::SfxTabDialog
// can be NULL, when Pages are onDemand
bool
bEditFmt
// when yes -> additional Button for standard
)
:
TabDialog
(
pParent
,
OUStringToOString
(
rID
,
RTL_TEXTENCODING_UTF8
)
,
rUIXMLDescription
)
:
TabDialog
(
pParent
,
rID
,
rUIXMLDescription
)
,
pFrame
(
pViewFrame
)
,
pSet
(
pItemSet
)
,
pOutSet
(
0
)
...
...
@@ -345,7 +345,7 @@ SfxTabDialog::SfxTabDialog
// can be NULL, when Pages are onDemand
bool
bEditFmt
// when yes -> additional Button for standard
)
:
TabDialog
(
pParent
,
OUStringToOString
(
rID
,
RTL_TEXTENCODING_UTF8
)
,
rUIXMLDescription
)
:
TabDialog
(
pParent
,
rID
,
rUIXMLDescription
)
,
pFrame
(
0
)
,
pSet
(
pItemSet
)
,
pOutSet
(
0
)
...
...
vcl/source/window/tabdlg.cxx
Dosyayı görüntüle @
369eb9bf
...
...
@@ -213,8 +213,8 @@ TabDialog::TabDialog( vcl::Window* pParent, WinBits nStyle ) :
ImplInit
(
pParent
,
nStyle
);
}
TabDialog
::
TabDialog
(
vcl
::
Window
*
pParent
,
const
OString
&
rID
,
const
OUString
&
rUIXMLDescription
)
:
Dialog
(
pParent
,
rID
,
rUIXMLDescription
,
WINDOW_TABDIALOG
)
TabDialog
::
TabDialog
(
vcl
::
Window
*
pParent
,
const
O
U
String
&
rID
,
const
OUString
&
rUIXMLDescription
)
:
Dialog
(
pParent
,
OUStringToOString
(
rID
,
RTL_TEXTENCODING_UTF8
)
,
rUIXMLDescription
,
WINDOW_TABDIALOG
)
{
ImplInitTabDialogData
();
}
...
...
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