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
93fed09b
Kaydet (Commit)
93fed09b
authored
Nis 27, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Dialog::EndDialog nResult param is of type long/VclResponseType
Change-Id: I31f1941daf158676518fcf259ef8a9e84863473e
üst
a8e7b496
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
13 additions
and
13 deletions
+13
-13
cuicharmap.cxx
cui/source/dialogs/cuicharmap.cxx
+2
-2
CollectionView.cxx
dbaccess/source/ui/dlg/CollectionView.cxx
+1
-1
taborder.cxx
extensions/source/propctrlr/taborder.cxx
+1
-1
impdialog.cxx
filter/source/pdf/impdialog.cxx
+1
-1
iodlg.cxx
fpicker/source/office/iodlg.cxx
+3
-3
tabbgcolordlg.cxx
sc/source/ui/miscdlgs/tabbgcolordlg.cxx
+3
-3
CustomAnimationCreateDialog.cxx
sd/source/ui/animations/CustomAnimationCreateDialog.cxx
+1
-1
brkdlg.cxx
sd/source/ui/dlg/brkdlg.cxx
+1
-1
No files found.
cui/source/dialogs/cuicharmap.cxx
Dosyayı görüntüle @
93fed09b
...
...
@@ -402,7 +402,7 @@ IMPL_LINK_NOARG(SvxCharacterMap, OKHdl)
OUString
aOUStr
(
&
cChar
,
1
);
m_pShowText
->
SetText
(
aOUStr
);
}
EndDialog
(
sal_True
);
EndDialog
(
RET_OK
);
return
0
;
}
...
...
@@ -497,7 +497,7 @@ IMPL_LINK_NOARG(SvxCharacterMap, CharDoubleClickHdl)
sal_UCS4
cChar
=
m_pShowSet
->
GetSelectCharacter
();
m_pShowText
->
SetText
(
OUString
(
&
cChar
,
1
));
}
EndDialog
(
sal_True
);
EndDialog
(
RET_OK
);
return
0
;
}
...
...
dbaccess/source/ui/dlg/CollectionView.cxx
Dosyayı görüntüle @
93fed09b
...
...
@@ -174,7 +174,7 @@ IMPL_LINK_NOARG(OCollectionView, Save_Click)
return
0
;
}
m_pName
->
SetText
(
sName
);
EndDialog
(
sal_True
);
EndDialog
(
RET_OK
);
}
}
catch
(
const
Exception
&
)
...
...
extensions/source/propctrlr/taborder.cxx
Dosyayı görüntüle @
93fed09b
...
...
@@ -281,7 +281,7 @@ namespace pcr
// TODO: UNO action (to bracket all the single actions which are being created)
m_xModel
->
setControlModels
(
aSortedControlModelSeq
);
EndDialog
(
sal_True
);
EndDialog
(
RET_OK
);
return
0
;
}
...
...
filter/source/pdf/impdialog.cxx
Dosyayı görüntüle @
93fed09b
...
...
@@ -305,7 +305,7 @@ ImpPDFTabGeneralPage* ImpPDFTabDialog::getGeneralPage() const
IMPL_LINK_NOARG
(
ImpPDFTabDialog
,
CancelHdl
)
{
EndDialog
(
sal_False
);
EndDialog
(
RET_CANCEL
);
return
0
;
}
...
...
fpicker/source/office/iodlg.cxx
Dosyayı görüntüle @
93fed09b
...
...
@@ -806,7 +806,7 @@ IMPL_LINK_NOARG(SvtFileDialog, CancelHdl_Impl)
}
else
{
EndDialog
(
sal_False
);
EndDialog
(
RET_CANCEL
);
}
return
1L
;
}
...
...
@@ -1113,7 +1113,7 @@ IMPL_STATIC_LINK( SvtFileDialog, OpenHdl_Impl, void*, pVoid )
if
(
nRet
)
{
pThis
->
EndDialog
(
sal_True
);
pThis
->
EndDialog
(
RET_OK
);
}
return
nRet
;
...
...
@@ -1380,7 +1380,7 @@ void SvtFileDialog::OpenMultiSelection_Impl()
nRet
=
1
;
if
(
nRet
)
EndDialog
(
sal_True
);
EndDialog
(
RET_OK
);
}
...
...
sc/source/ui/miscdlgs/tabbgcolordlg.cxx
Dosyayı görüntüle @
93fed09b
...
...
@@ -113,7 +113,7 @@ IMPL_LINK_NOARG(ScTabBgColorDlg, TabBgColorDblClickHdl_Impl)
sal_uInt16
nItemId
=
m_pTabBgColorSet
->
GetSelectItemId
();
Color
aColor
=
nItemId
?
(
m_pTabBgColorSet
->
GetItemColor
(
nItemId
)
)
:
Color
(
COL_AUTO
);
m_aTabBgColor
=
aColor
;
EndDialog
(
sal_True
);
EndDialog
(
RET_OK
);
return
0
;
}
...
...
@@ -125,7 +125,7 @@ IMPL_LINK_NOARG(ScTabBgColorDlg, TabBgColorOKHdl_Impl)
sal_uInt16
nItemId
=
m_pTabBgColorSet
->
GetSelectItemId
();
Color
aColor
=
nItemId
?
(
m_pTabBgColorSet
->
GetItemColor
(
nItemId
)
)
:
Color
(
COL_AUTO
);
m_aTabBgColor
=
aColor
;
EndDialog
(
sal_True
);
EndDialog
(
RET_OK
);
return
0
;
}
...
...
@@ -156,7 +156,7 @@ void ScTabBgColorDlg::ScTabBgColorValueSet::KeyInput( const KeyEvent& rKEvt )
sal_uInt16
nItemId
=
GetSelectItemId
();
const
Color
&
aColor
=
nItemId
?
(
GetItemColor
(
nItemId
)
)
:
Color
(
COL_AUTO
);
m_pTabBgColorDlg
->
m_aTabBgColor
=
aColor
;
m_pTabBgColorDlg
->
EndDialog
(
sal_True
);
m_pTabBgColorDlg
->
EndDialog
(
RET_OK
);
}
break
;
}
...
...
sd/source/ui/animations/CustomAnimationCreateDialog.cxx
Dosyayı görüntüle @
93fed09b
...
...
@@ -311,7 +311,7 @@ IMPL_LINK( CustomAnimationCreateTabPage, implDoubleClickHdl, Control*, pControl
if
(
pControl
==
mpLBEffects
)
{
if
(
mpLBEffects
->
GetSelectEntryCount
()
)
mpParent
->
EndDialog
(
sal_True
);
mpParent
->
EndDialog
(
RET_OK
);
}
return
0
;
}
...
...
sd/source/ui/dlg/brkdlg.cxx
Dosyayı görüntüle @
93fed09b
...
...
@@ -157,7 +157,7 @@ short BreakDlg::Execute()
IMPL_LINK_NOARG
(
BreakDlg
,
InitialUpdate
)
{
pDrView
->
DoImportMarkedMtf
(
pProgrInfo
);
EndDialog
(
sal_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