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
c6189de1
Kaydet (Commit)
c6189de1
authored
Eki 30, 2011
tarafından
Lior Kaplan
Kaydeden (comit)
Michael Meeks
Kas 02, 2011
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
rename TEXTDIRECTION variables to TEXTORIENTATION to represent the previous string change
üst
72e0dfc0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
15 deletions
+15
-15
tabledlg.cxx
sw/source/ui/table/tabledlg.cxx
+7
-7
tabledlg.hrc
sw/source/ui/table/tabledlg.hrc
+2
-2
tabledlg.src
sw/source/ui/table/tabledlg.src
+6
-6
No files found.
sw/source/ui/table/tabledlg.cxx
Dosyayı görüntüle @
c6189de1
...
...
@@ -106,8 +106,8 @@ SwFormatTablePage::SwFormatTablePage( Window* pParent, const SfxItemSet& rSet )
aBottomMF
(
this
,
SW_RES
(
ED_BOTTOM_DIST
)),
aPropertiesFL
(
this
,
SW_RES
(
FL_PROPERTIES
)),
aTextDirectionFT
(
this
,
SW_RES
(
FT_TEXT
DIREC
TION
)),
aTextDirectionLB
(
this
,
SW_RES
(
LB_TEXT
DIREC
TION
)),
aTextDirectionFT
(
this
,
SW_RES
(
FT_TEXT
ORIENTA
TION
)),
aTextDirectionLB
(
this
,
SW_RES
(
LB_TEXT
ORIENTA
TION
)),
pTblData
(
0
),
nSaveWidth
(
0
),
...
...
@@ -1343,8 +1343,8 @@ SwTextFlowPage::SwTextFlowPage( Window* pParent,
aRepeatHeaderNF
(
this
,
SW_RES
(
NF_REPEAT_HEADER
)),
aRepeatHeaderAfterFT
(
this
),
aRepeatHeaderCombo
(
this
,
SW_RES
(
WIN_REPEAT_HEADER
),
aRepeatHeaderNF
,
aRepeatHeaderBeforeFT
,
aRepeatHeaderAfterFT
),
aTextDirectionFT
(
this
,
SW_RES
(
FT_TEXT
DIREC
TION
)),
aTextDirectionLB
(
this
,
SW_RES
(
LB_TEXT
DIREC
TION
)),
aTextDirectionFT
(
this
,
SW_RES
(
FT_TEXT
ORIENTA
TION
)),
aTextDirectionLB
(
this
,
SW_RES
(
LB_TEXT
ORIENTA
TION
)),
aVertOrientFL
(
this
,
SW_RES
(
FL_VERT_ORIENT
)),
aVertOrientFT
(
this
,
SW_RES
(
FT_VERTORIENT
)),
...
...
@@ -1503,7 +1503,7 @@ sal_Bool SwTextFlowPage::FillItemSet( SfxItemSet& rSet )
bModified
|=
0
!=
rSet
.
Put
(
SvxFrameDirectionItem
(
(
SvxFrameDirection
)(
sal_uLong
)
aTextDirectionLB
.
GetEntryData
(
aTextDirectionLB
.
GetSelectEntryPos
())
,
FN_TABLE_BOX_TEXT
DIREC
TION
));
,
FN_TABLE_BOX_TEXT
ORIENTA
TION
));
}
if
(
aVertOrientLB
.
GetSelectEntryPos
()
!=
aVertOrientLB
.
GetSavedValue
())
...
...
@@ -1675,9 +1675,9 @@ void SwTextFlowPage::Reset( const SfxItemSet& rSet )
aRepeatHeaderNF
.
SetValue
(
nRep
);
aRepeatHeaderNF
.
SaveValue
();
}
if
(
rSet
.
GetItemState
(
FN_TABLE_BOX_TEXT
DIREC
TION
)
>
SFX_ITEM_AVAILABLE
)
if
(
rSet
.
GetItemState
(
FN_TABLE_BOX_TEXT
ORIENTA
TION
)
>
SFX_ITEM_AVAILABLE
)
{
sal_uLong
nDirection
=
((
const
SvxFrameDirectionItem
&
)
rSet
.
Get
(
FN_TABLE_BOX_TEXT
DIREC
TION
)).
GetValue
();
sal_uLong
nDirection
=
((
const
SvxFrameDirectionItem
&
)
rSet
.
Get
(
FN_TABLE_BOX_TEXT
ORIENTA
TION
)).
GetValue
();
aTextDirectionLB
.
SelectEntryPos
(
aTextDirectionLB
.
GetEntryPos
(
(
const
void
*
)
nDirection
));
}
...
...
sw/source/ui/table/tabledlg.hrc
Dosyayı görüntüle @
c6189de1
...
...
@@ -58,8 +58,8 @@
#define WIN_REPEAT_HEADER 40
#define FL_HEADLINE 41
#define FL_PROPERTIES 42
#define FT_TEXT
DIREC
TION 43
#define LB_TEXT
DIREC
TION 44
#define FT_TEXT
ORIENTA
TION 43
#define LB_TEXT
ORIENTA
TION 44
#define BT_OK 100
#define BT_CANCEL 101
...
...
sw/source/ui/table/tabledlg.src
Dosyayı görüntüle @
c6189de1
...
...
@@ -307,16 +307,16 @@ TabPage TP_FORMAT_TABLE
Hide = TRUE ;
Text [ en-US ] = "Properties";
};
FixedText FT_TEXT
DIREC
TION
FixedText FT_TEXT
ORIENTA
TION
{
Pos = MAP_APPFONT ( 12 , 138 ) ;
Size = MAP_APPFONT ( 60 , 8 ) ;
Hide = TRUE ;
Text [ en-US ] = "Text ~direction";
};
ListBox LB_TEXT
DIREC
TION
ListBox LB_TEXT
ORIENTA
TION
{
HelpID = "sw:ListBox:TP_FORMAT_TABLE:LB_TEXT
DIREC
TION";
HelpID = "sw:ListBox:TP_FORMAT_TABLE:LB_TEXT
ORIENTA
TION";
Border = TRUE ;
Pos = MAP_APPFONT ( 75 , 136 ) ;
Size = MAP_APPFONT ( 176 , 50 ) ;
...
...
@@ -733,15 +733,15 @@ TabPage TP_TABLE_TEXTFLOW
Pos = MAP_APPFONT ( 21 , 113 ) ;
Size = MAP_APPFONT ( 2 , 1 ) ;
};
FixedText FT_TEXT
DIREC
TION
FixedText FT_TEXT
ORIENTA
TION
{
Pos = MAP_APPFONT ( 12 , 132 ) ;
Size = MAP_APPFONT ( 70 , 10 ) ;
Text [ en-US ] = "Text ~orientation" ;
};
ListBox LB_TEXT
DIREC
TION
ListBox LB_TEXT
ORIENTA
TION
{
HelpID = "sw:ListBox:TP_TABLE_TEXTFLOW:LB_TEXT
DIREC
TION";
HelpID = "sw:ListBox:TP_TABLE_TEXTFLOW:LB_TEXT
ORIENTA
TION";
Pos = MAP_APPFONT ( 85 , 130 ) ;
Size = MAP_APPFONT ( 163 , 50 ) ;
DropDown = TRUE;
...
...
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