From 0423b1465ef10de9760a46110e51946460a349f1 Mon Sep 17 00:00:00 2001 From: Himanshu Date: Thu, 4 Jul 2013 11:37:38 +0530 Subject: [PATCH] Changed return value to false for IpropagatedEventListener Change-Id: I76f2ee6b7371d5e76f34b047747fc6ecc40bc16a Signed-off-by: Himanshu --- inc/GlAlbumListEditorForm.h | 4 ++-- inc/GlFileListEditorForm.h | 4 ++-- inc/GlSlideShowPopUp.h | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/inc/GlAlbumListEditorForm.h b/inc/GlAlbumListEditorForm.h index ae5dde4..5c320c7 100644 --- a/inc/GlAlbumListEditorForm.h +++ b/inc/GlAlbumListEditorForm.h @@ -82,8 +82,8 @@ public: virtual bool OnKeyPressed(Control& source, const Tizen::Ui::KeyEventInfo& keyEventInfo){ return true;} virtual bool OnKeyReleased(Control& source, const Tizen::Ui::KeyEventInfo& keyEventInfo); - virtual bool OnPreviewKeyPressed(Control& source, const Tizen::Ui::KeyEventInfo& keyEventInfo){ return true; } - virtual bool OnPreviewKeyReleased(Control& source, const Tizen::Ui::KeyEventInfo& keyEventInfo){ return true; } + virtual bool OnPreviewKeyPressed(Control& source, const Tizen::Ui::KeyEventInfo& keyEventInfo){ return false; } + virtual bool OnPreviewKeyReleased(Control& source, const Tizen::Ui::KeyEventInfo& keyEventInfo){ return false; } private: result InitializeControl(void); diff --git a/inc/GlFileListEditorForm.h b/inc/GlFileListEditorForm.h index 7460699..3263a19 100644 --- a/inc/GlFileListEditorForm.h +++ b/inc/GlFileListEditorForm.h @@ -80,8 +80,8 @@ public: virtual bool OnKeyPressed(Control& source, const Tizen::Ui::KeyEventInfo& keyEventInfo){ return true; } virtual bool OnKeyReleased(Control& source, const Tizen::Ui::KeyEventInfo& keyEventInfo); - virtual bool OnPreviewKeyPressed(Control& source, const Tizen::Ui::KeyEventInfo& keyEventInfo){ return true; } - virtual bool OnPreviewKeyReleased(Control& source, const Tizen::Ui::KeyEventInfo& keyEventInfo){ return true; } + virtual bool OnPreviewKeyPressed(Control& source, const Tizen::Ui::KeyEventInfo& keyEventInfo){ return false; } + virtual bool OnPreviewKeyReleased(Control& source, const Tizen::Ui::KeyEventInfo& keyEventInfo){ return false; } private: result InitializeFooter(void); diff --git a/inc/GlSlideShowPopUp.h b/inc/GlSlideShowPopUp.h index c1e6650..3e5c08c 100644 --- a/inc/GlSlideShowPopUp.h +++ b/inc/GlSlideShowPopUp.h @@ -63,8 +63,8 @@ public: virtual bool OnKeyPressed(Control& source, const Tizen::Ui::KeyEventInfo& keyEventInfo){ return true; }; virtual bool OnKeyReleased(Control& source, const Tizen::Ui::KeyEventInfo& keyEventInfo); - virtual bool OnPreviewKeyPressed(Control& source, const Tizen::Ui::KeyEventInfo& keyEventInfo){ return true;}; - virtual bool OnPreviewKeyReleased(Control& source, const Tizen::Ui::KeyEventInfo& keyEventInfo){ return true;}; + virtual bool OnPreviewKeyPressed(Control& source, const Tizen::Ui::KeyEventInfo& keyEventInfo){ return false;}; + virtual bool OnPreviewKeyReleased(Control& source, const Tizen::Ui::KeyEventInfo& keyEventInfo){ return false;}; private: Tizen::Ui::Controls::ListView* __pList; -- 2.7.4