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
934e051b
Kaydet (Commit)
934e051b
authored
Agu 08, 2012
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Some MSVC warnings
Change-Id: Ib4856779bb2060e3e95d24b8a00249e411f92b62
üst
9dd8fac9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
baside2.cxx
basctl/source/basicide/baside2.cxx
+1
-1
moduldl2.cxx
basctl/source/basicide/moduldl2.cxx
+4
-4
moduldlg.hxx
basctl/source/basicide/moduldlg.hxx
+1
-1
No files found.
basctl/source/basicide/baside2.cxx
Dosyayı görüntüle @
934e051b
...
...
@@ -1458,7 +1458,7 @@ void ModulWindowLayout::Paint( const Rectangle& )
void
ModulWindowLayout
::
ArrangeWindows
()
{
static
long
const
nSplitThickness
=
2
;
static
float
const
static
double
const
fDefaultLeftSplit
=
0.2
,
fDefaultBottomSplit
=
0.75
,
fDefaultVertSplit
=
0.67
;
...
...
basctl/source/basicide/moduldl2.cxx
Dosyayı görüntüle @
934e051b
...
...
@@ -228,14 +228,14 @@ SvLBoxEntry* BasicCheckBox::FindEntry( const String& rName )
//----------------------------------------------------------------------------
void
BasicCheckBox
::
CheckEntryPos
(
sal_uLong
nPos
,
bool
bCheck
)
void
BasicCheckBox
::
CheckEntryPos
(
sal_uLong
nPos
)
{
if
(
nPos
<
GetEntryCount
()
)
{
SvLBoxEntry
*
pEntry
=
GetEntry
(
nPos
);
if
(
bCheck
!=
GetCheckButtonState
(
pEntry
)
)
SetCheckButtonState
(
pEntry
,
SvButtonState
(
bCheck
?
SV_BUTTON_CHECKED
:
SV_BUTTON_UN
CHECKED
)
);
if
(
GetCheckButtonState
(
pEntry
)
!=
SV_BUTTON_CHECKED
)
SetCheckButtonState
(
pEntry
,
SvButtonState
(
SV_BUTTON_
CHECKED
)
);
}
}
...
...
@@ -895,7 +895,7 @@ void LibPage::InsertLib()
{
SvLBoxEntry
*
pEntry
=
pLibDlg
->
GetLibBox
().
DoInsertEntry
(
aLibName
);
sal_uInt16
nPos
=
(
sal_uInt16
)
pLibDlg
->
GetLibBox
().
GetModel
()
->
GetAbsPos
(
pEntry
);
pLibDlg
->
GetLibBox
().
CheckEntryPos
(
nPos
,
true
);
pLibDlg
->
GetLibBox
().
CheckEntryPos
(
nPos
);
}
}
...
...
basctl/source/basicide/moduldlg.hxx
Dosyayı görüntüle @
934e051b
...
...
@@ -132,7 +132,7 @@ public:
SvLBoxEntry
*
DoInsertEntry
(
const
String
&
rStr
,
sal_uLong
nPos
=
LISTBOX_APPEND
);
SvLBoxEntry
*
FindEntry
(
const
String
&
rName
);
void
CheckEntryPos
(
sal_uLong
nPos
,
bool
bCheck
=
true
);
void
CheckEntryPos
(
sal_uLong
nPos
);
bool
IsChecked
(
sal_uLong
nPos
)
const
;
virtual
void
InitEntry
(
SvLBoxEntry
*
,
const
XubString
&
,
const
Image
&
,
const
Image
&
,
SvLBoxButtonKind
eButtonKind
);
...
...
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