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
2e7c6b86
Kaydet (Commit)
2e7c6b86
authored
Eyl 25, 2012
tarafından
Noel Grandin
Kaydeden (comit)
Michael Stahl
Eki 04, 2012
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sal_Bool->bool in padmin
Change-Id: Ica624c28b4e423531be3ef6a601f266d1cad1d07
üst
4faa36e4
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
progress.cxx
padmin/source/progress.cxx
+3
-3
progress.hxx
padmin/source/progress.hxx
+2
-2
No files found.
padmin/source/progress.cxx
Dosyayı görüntüle @
2e7c6b86
...
...
@@ -40,7 +40,7 @@ ProgressDialog::ProgressDialog( Window* pParent,
maProgressBar
(
this
,
PaResId
(
RID_PROGRESS_STATUSBAR
)
),
mnMax
(
nMax
),
mnMin
(
nMin
),
mbCanceled
(
sal_F
alse
)
mbCanceled
(
f
alse
)
{
maFilename
.
SetStyle
(
maFilename
.
GetStyle
()
|
WB_PATHELLIPSIS
);
if
(
!
bCancelable
)
...
...
@@ -64,7 +64,7 @@ void ProgressDialog::startOperation( const String& rOperation )
{
maOperation
.
SetText
(
rOperation
);
maProgressBar
.
SetValue
(
0
);
mbCanceled
=
sal_F
alse
;
mbCanceled
=
f
alse
;
if
(
!
IsVisible
()
)
Show
(
sal_True
);
}
...
...
@@ -86,7 +86,7 @@ IMPL_LINK( ProgressDialog, ClickBtnHdl, Button*, pButton )
{
if
(
pButton
==
&
maCancelButton
)
{
mbCanceled
=
sal_T
rue
;
mbCanceled
=
t
rue
;
}
return
0
;
}
...
...
padmin/source/progress.hxx
Dosyayı görüntüle @
2e7c6b86
...
...
@@ -37,7 +37,7 @@ namespace padmin {
ProgressBar
maProgressBar
;
int
mnMax
,
mnMin
;
sal_B
ool
mbCanceled
;
b
ool
mbCanceled
;
public
:
ProgressDialog
(
Window
*
,
sal_Bool
bCancelable
=
sal_True
,
int
nMin
=
0
,
int
nMax
=
100
);
...
...
@@ -50,7 +50,7 @@ namespace padmin {
void
startOperation
(
const
String
&
);
void
setFilename
(
const
String
&
);
sal_B
ool
isCanceled
()
{
return
mbCanceled
;
}
b
ool
isCanceled
()
{
return
mbCanceled
;
}
};
}
// namespace
...
...
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