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
00d0a50e
Kaydet (Commit)
00d0a50e
authored
Ock 17, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Window::Notify should return bool, redux
Change-Id: Ib41ed9ace428081e1948cf109de095ea9e7c45c2
üst
ed1878d2
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
funcutl.cxx
formula/source/ui/dlg/funcutl.cxx
+1
-1
iodlg.cxx
fpicker/source/office/iodlg.cxx
+1
-1
ViewShell.hxx
sd/source/ui/inc/ViewShell.hxx
+1
-1
viewshel.cxx
sd/source/ui/view/viewshel.cxx
+2
-2
actctrl.cxx
sw/source/ui/cctrl/actctrl.cxx
+1
-1
No files found.
formula/source/ui/dlg/funcutl.cxx
Dosyayı görüntüle @
00d0a50e
...
...
@@ -441,7 +441,7 @@ long EditBox::PreNotify( NotifyEvent& rNEvt )
sal_uInt16
nKey
=
aKeyCode
.
GetCode
();
if
(
(
nKey
==
KEY_RETURN
&&
!
aKeyCode
.
IsShift
())
||
nKey
==
KEY_TAB
)
{
nResult
=
GetParent
()
->
Notify
(
rNEvt
);
nResult
=
long
(
GetParent
()
->
Notify
(
rNEvt
)
);
}
else
{
...
...
fpicker/source/office/iodlg.cxx
Dosyayı görüntüle @
00d0a50e
...
...
@@ -1719,7 +1719,7 @@ bool SvtFileDialog::Notify( NotifyEvent& rNEvt )
{
sal_uInt16
nType
=
rNEvt
.
GetType
();
long
nRet
=
false
;
bool
nRet
=
false
;
if
(
EVENT_KEYINPUT
==
nType
&&
rNEvt
.
GetKeyEvent
()
)
{
...
...
sd/source/ui/inc/ViewShell.hxx
Dosyayı görüntüle @
00d0a50e
...
...
@@ -185,7 +185,7 @@ public:
virtual
void
MouseButtonDown
(
const
MouseEvent
&
rMEvt
,
::
sd
::
Window
*
pWin
);
virtual
void
Command
(
const
CommandEvent
&
rCEvt
,
::
sd
::
Window
*
pWin
);
virtual
sal_Bool
RequestHelp
(
const
HelpEvent
&
rEvt
,
::
sd
::
Window
*
pWin
);
virtual
long
Notify
(
NotifyEvent
&
rNEvt
,
::
sd
::
Window
*
pWin
);
virtual
bool
Notify
(
NotifyEvent
&
rNEvt
,
::
sd
::
Window
*
pWin
);
virtual
bool
HandleScrollCommand
(
const
CommandEvent
&
rCEvt
,
::
sd
::
Window
*
pWin
);
...
...
sd/source/ui/view/viewshel.cxx
Dosyayı görüntüle @
00d0a50e
...
...
@@ -623,10 +623,10 @@ void ViewShell::Command(const CommandEvent& rCEvt, ::sd::Window* pWin)
}
}
long
ViewShell
::
Notify
(
NotifyEvent
&
rNEvt
,
::
sd
::
Window
*
pWin
)
bool
ViewShell
::
Notify
(
NotifyEvent
&
rNEvt
,
::
sd
::
Window
*
pWin
)
{
// handle scroll commands when they arrived at child windows
long
nRet
=
sal_F
alse
;
bool
nRet
=
f
alse
;
if
(
rNEvt
.
GetType
()
==
EVENT_COMMAND
)
{
// note: dynamic_cast is not possible as GetData() returns a void*
...
...
sw/source/ui/cctrl/actctrl.cxx
Dosyayı görüntüle @
00d0a50e
...
...
@@ -30,7 +30,7 @@ void NumEditAction::Action()
bool
NumEditAction
::
Notify
(
NotifyEvent
&
rNEvt
)
{
long
nHandled
=
false
;
bool
nHandled
=
false
;
if
(
rNEvt
.
GetType
()
==
EVENT_KEYINPUT
)
{
...
...
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