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
92cda0a9
Kaydet (Commit)
92cda0a9
authored
Agu 23, 2013
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
convert include/sfx2/mgetempl.hxx from String to OUString
Change-Id: Iaa9e8f22df79a2cd300ce6a89592e38b20613553
üst
e8fb35b9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
mgetempl.hxx
include/sfx2/mgetempl.hxx
+5
-5
mgetempl.cxx
sfx2/source/dialog/mgetempl.cxx
+3
-3
No files found.
include/sfx2/mgetempl.hxx
Dosyayı görüntüle @
92cda0a9
...
@@ -55,13 +55,13 @@ class SfxManageStyleSheetPage : public SfxTabPage
...
@@ -55,13 +55,13 @@ class SfxManageStyleSheetPage : public SfxTabPage
SfxStyleSheetBase
*
pStyle
;
SfxStyleSheetBase
*
pStyle
;
SfxStyleFamilies
*
pFamilies
;
SfxStyleFamilies
*
pFamilies
;
const
SfxStyleFamilyItem
*
pItem
;
const
SfxStyleFamilyItem
*
pItem
;
String
aBuf
;
OU
String
aBuf
;
sal_Bool
bModified
;
sal_Bool
bModified
;
// initial data for the style
// initial data for the style
String
aName
;
OU
String
aName
;
String
aFollow
;
OU
String
aFollow
;
String
aParent
;
OU
String
aParent
;
sal_uInt16
nFlags
;
sal_uInt16
nFlags
;
private
:
private
:
...
@@ -70,7 +70,7 @@ friend class SfxStyleDialog;
...
@@ -70,7 +70,7 @@ friend class SfxStyleDialog;
DECL_LINK
(
GetFocusHdl
,
Edit
*
);
DECL_LINK
(
GetFocusHdl
,
Edit
*
);
DECL_LINK
(
LoseFocusHdl
,
Edit
*
);
DECL_LINK
(
LoseFocusHdl
,
Edit
*
);
void
UpdateName_Impl
(
ListBox
*
,
const
String
&
rNew
);
void
UpdateName_Impl
(
ListBox
*
,
const
OU
String
&
rNew
);
void
SetDescriptionText_Impl
();
void
SetDescriptionText_Impl
();
SfxManageStyleSheetPage
(
Window
*
pParent
,
const
SfxItemSet
&
rAttrSet
);
SfxManageStyleSheetPage
(
Window
*
pParent
,
const
SfxItemSet
&
rAttrSet
);
...
...
sfx2/source/dialog/mgetempl.cxx
Dosyayı görüntüle @
92cda0a9
...
@@ -246,7 +246,7 @@ SfxManageStyleSheetPage::~SfxManageStyleSheetPage()
...
@@ -246,7 +246,7 @@ SfxManageStyleSheetPage::~SfxManageStyleSheetPage()
//-------------------------------------------------------------------------
//-------------------------------------------------------------------------
void
SfxManageStyleSheetPage
::
UpdateName_Impl
(
ListBox
*
pBox
,
void
SfxManageStyleSheetPage
::
UpdateName_Impl
(
ListBox
*
pBox
,
const
String
&
rNew
)
const
OU
String
&
rNew
)
/* [Description]
/* [Description]
...
@@ -424,7 +424,7 @@ void SfxManageStyleSheetPage::Reset( const SfxItemSet& /*rAttrSet*/ )
...
@@ -424,7 +424,7 @@ void SfxManageStyleSheetPage::Reset( const SfxItemSet& /*rAttrSet*/ )
if
(
sCmp
!=
aFollow
)
if
(
sCmp
!=
aFollow
)
pStyle
->
SetFollow
(
aFollow
);
pStyle
->
SetFollow
(
aFollow
);
if
(
!
aFollow
.
Len
()
)
if
(
aFollow
.
isEmpty
()
)
m_pFollowLb
->
SelectEntry
(
aName
);
m_pFollowLb
->
SelectEntry
(
aName
);
else
else
m_pFollowLb
->
SelectEntry
(
aFollow
);
m_pFollowLb
->
SelectEntry
(
aFollow
);
...
@@ -437,7 +437,7 @@ void SfxManageStyleSheetPage::Reset( const SfxItemSet& /*rAttrSet*/ )
...
@@ -437,7 +437,7 @@ void SfxManageStyleSheetPage::Reset( const SfxItemSet& /*rAttrSet*/ )
if
(
sCmp
!=
aParent
)
if
(
sCmp
!=
aParent
)
pStyle
->
SetParent
(
aParent
);
pStyle
->
SetParent
(
aParent
);
if
(
!
aParent
.
Len
()
)
if
(
aParent
.
isEmpty
()
)
m_pBaseLb
->
SelectEntry
(
SfxResId
(
STR_NONE
).
toString
()
);
m_pBaseLb
->
SelectEntry
(
SfxResId
(
STR_NONE
).
toString
()
);
else
else
m_pBaseLb
->
SelectEntry
(
aParent
);
m_pBaseLb
->
SelectEntry
(
aParent
);
...
...
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