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
d8bbe0ed
Kaydet (Commit)
d8bbe0ed
authored
Ock 14, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
EndDialog takes long nResult, not bool
Change-Id: Ic6283b7a71a5d1c539ae99155f448e34e877080a
üst
4ebeb52a
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
7 deletions
+7
-7
thesdlg.cxx
cui/source/dialogs/thesdlg.cxx
+1
-1
certpath.cxx
cui/source/options/certpath.cxx
+1
-1
license_dialog.cxx
desktop/source/deployment/gui/license_dialog.cxx
+2
-2
inputdlg.cxx
sfx2/source/dialog/inputdlg.cxx
+1
-1
fontworkgallery.cxx
svx/source/tbxctrls/fontworkgallery.cxx
+2
-2
No files found.
cui/source/dialogs/thesdlg.cxx
Dosyayı görüntüle @
d8bbe0ed
...
...
@@ -518,7 +518,7 @@ SvxThesaurusDialog::SvxThesaurusDialog(
IMPL_LINK
(
SvxThesaurusDialog
,
ReplaceBtnHdl_Impl
,
Button
*
,
EMPTYARG
/*pBtn*/
)
{
EndDialog
(
true
);
EndDialog
(
RET_OK
);
return
0
;
}
...
...
cui/source/options/certpath.cxx
Dosyayı görüntüle @
d8bbe0ed
...
...
@@ -135,7 +135,7 @@ IMPL_LINK_NOARG(CertPathDialog, OKHdl_Impl)
SAL_WARN
(
"cui.options"
,
"CertPathDialog::OKHdl_Impl(): caught exception"
<<
e
.
Message
);
}
EndDialog
(
true
);
EndDialog
(
RET_OK
);
return
0
;
}
...
...
desktop/source/deployment/gui/license_dialog.cxx
Dosyayı görüntüle @
d8bbe0ed
...
...
@@ -225,13 +225,13 @@ LicenseDialogImpl::LicenseDialogImpl(
IMPL_LINK_NOARG
(
LicenseDialogImpl
,
AcceptHdl
)
{
EndDialog
(
true
);
EndDialog
(
RET_OK
);
return
0
;
}
IMPL_LINK_NOARG
(
LicenseDialogImpl
,
CancelHdl
)
{
EndDialog
(
false
);
EndDialog
(
RET_CANCEL
);
return
0
;
}
...
...
sfx2/source/dialog/inputdlg.cxx
Dosyayı görüntüle @
d8bbe0ed
...
...
@@ -33,7 +33,7 @@ OUString InputDialog::getEntryText() const
IMPL_LINK
(
InputDialog
,
ClickHdl
,
PushButton
*
,
pButton
)
{
EndDialog
(
pButton
==
m_pOK
?
true
:
false
);
EndDialog
(
pButton
==
m_pOK
?
RET_OK
:
RET_CANCEL
);
return
0
;
}
...
...
svx/source/tbxctrls/fontworkgallery.cxx
Dosyayı görüntüle @
d8bbe0ed
...
...
@@ -247,7 +247,7 @@ void FontWorkGalleryDialog::insertSelectedFontwork()
IMPL_LINK_NOARG
(
FontWorkGalleryDialog
,
ClickOKHdl
)
{
insertSelectedFontwork
();
EndDialog
(
true
);
EndDialog
(
RET_OK
);
return
0
;
}
...
...
@@ -256,7 +256,7 @@ IMPL_LINK_NOARG(FontWorkGalleryDialog, ClickOKHdl)
IMPL_LINK_NOARG
(
FontWorkGalleryDialog
,
DoubleClickFavoriteHdl
)
{
insertSelectedFontwork
();
EndDialog
(
true
);
EndDialog
(
RET_OK
);
return
(
0L
);
}
...
...
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