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
ae11dafc
Kaydet (Commit)
ae11dafc
authored
Tem 27, 2017
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
align ImpVclMEdit::SetMaxTextWidth arg with TextEngine::SetMaxTextWidth
Change-Id: I7cc7531d6a1770edd8b644c6958b91275a53dd84
üst
39fd7e97
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
vclmedit.hxx
include/vcl/vclmedit.hxx
+1
-1
vclmedit.cxx
vcl/source/edit/vclmedit.cxx
+4
-4
No files found.
include/vcl/vclmedit.hxx
Dosyayı görüntüle @
ae11dafc
...
@@ -85,7 +85,7 @@ public:
...
@@ -85,7 +85,7 @@ public:
virtual
void
SetMaxTextLen
(
sal_Int32
nMaxLen
)
override
;
virtual
void
SetMaxTextLen
(
sal_Int32
nMaxLen
)
override
;
virtual
sal_Int32
GetMaxTextLen
()
const
override
;
virtual
sal_Int32
GetMaxTextLen
()
const
override
;
void
SetMaxTextWidth
(
sal_uLong
nMaxWidth
);
void
SetMaxTextWidth
(
long
nMaxWidth
);
virtual
void
SetSelection
(
const
Selection
&
rSelection
)
override
;
virtual
void
SetSelection
(
const
Selection
&
rSelection
)
override
;
virtual
const
Selection
&
GetSelection
()
const
override
;
virtual
const
Selection
&
GetSelection
()
const
override
;
...
...
vcl/source/edit/vclmedit.cxx
Dosyayı görüntüle @
ae11dafc
...
@@ -107,7 +107,7 @@ public:
...
@@ -107,7 +107,7 @@ public:
void
SetMaxTextLen
(
sal_Int32
nLen
);
void
SetMaxTextLen
(
sal_Int32
nLen
);
sal_Int32
GetMaxTextLen
()
const
;
sal_Int32
GetMaxTextLen
()
const
;
void
SetMaxTextWidth
(
sal_uLong
nMaxWidth
);
void
SetMaxTextWidth
(
long
nMaxWidth
);
void
InsertText
(
const
OUString
&
rStr
);
void
InsertText
(
const
OUString
&
rStr
);
OUString
GetSelected
()
const
;
OUString
GetSelected
()
const
;
...
@@ -390,9 +390,9 @@ OUString ImpVclMEdit::GetSelected( LineEnd aSeparator ) const
...
@@ -390,9 +390,9 @@ OUString ImpVclMEdit::GetSelected( LineEnd aSeparator ) const
return
mpTextWindow
->
GetTextView
()
->
GetSelected
(
aSeparator
);
return
mpTextWindow
->
GetTextView
()
->
GetSelected
(
aSeparator
);
}
}
void
ImpVclMEdit
::
SetMaxTextWidth
(
sal_uLong
nMaxWidth
)
void
ImpVclMEdit
::
SetMaxTextWidth
(
long
nMaxWidth
)
{
{
mpTextWindow
->
GetTextEngine
()
->
SetMaxTextWidth
(
nMaxWidth
);
mpTextWindow
->
GetTextEngine
()
->
SetMaxTextWidth
(
nMaxWidth
);
}
}
void
ImpVclMEdit
::
Resize
()
void
ImpVclMEdit
::
Resize
()
...
@@ -1168,7 +1168,7 @@ void VclMultiLineEdit::SetMaxTextLen(sal_Int32 nMaxLen)
...
@@ -1168,7 +1168,7 @@ void VclMultiLineEdit::SetMaxTextLen(sal_Int32 nMaxLen)
pImpVclMEdit
->
SetMaxTextLen
(
nMaxLen
);
pImpVclMEdit
->
SetMaxTextLen
(
nMaxLen
);
}
}
void
VclMultiLineEdit
::
SetMaxTextWidth
(
sal_uLong
nMaxWidth
)
void
VclMultiLineEdit
::
SetMaxTextWidth
(
long
nMaxWidth
)
{
{
pImpVclMEdit
->
SetMaxTextWidth
(
nMaxWidth
);
pImpVclMEdit
->
SetMaxTextWidth
(
nMaxWidth
);
}
}
...
...
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