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
c1a4cd6c
Kaydet (Commit)
c1a4cd6c
authored
Nis 27, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Dialog::Execute return type is short/VclResponseType
Change-Id: I40fb77dff3112ee154d6d413757af6593486280d
üst
5c859f4f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
sanedlg.cxx
extensions/source/scanner/sanedlg.cxx
+1
-1
prnsetup.cxx
svtools/source/dialogs/prnsetup.cxx
+2
-2
No files found.
extensions/source/scanner/sanedlg.cxx
Dosyayı görüntüle @
c1a4cd6c
...
...
@@ -258,7 +258,7 @@ short SaneDlg::Execute()
{
MessageDialog
aErrorBox
(
NULL
,
SaneResId
(
STR_COULD_NOT_BE_INIT
));
aErrorBox
.
Execute
();
return
sal_False
;
return
RET_CANCEL
;
}
LoadState
();
return
ModalDialog
::
Execute
();
...
...
svtools/source/dialogs/prnsetup.cxx
Dosyayı görüntüle @
c1a4cd6c
...
...
@@ -345,7 +345,7 @@ short PrinterSetupDialog::Execute()
if
(
!
mpPrinter
||
mpPrinter
->
IsPrinting
()
||
mpPrinter
->
IsJobActive
()
)
{
SAL_WARN
(
"svtools.dialogs"
,
"PrinterSetupDialog::Execute() - No Printer or printer is printing"
);
return
sal_False
;
return
RET_CANCEL
;
}
Printer
::
updatePrinters
();
...
...
@@ -358,7 +358,7 @@ short PrinterSetupDialog::Execute()
short
nRet
=
ModalDialog
::
Execute
();
// update data if the dialog was terminated with OK
if
(
nRet
==
sal_True
)
if
(
nRet
==
RET_OK
)
{
if
(
mpTempPrinter
)
mpPrinter
->
SetPrinterProps
(
mpTempPrinter
);
...
...
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