comparison Framework/Widgets/EmptyWidget.h @ 54:01aa453d4d5b wasm

IWidget::HasRenderMouseOver
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 27 Apr 2017 17:49:29 +0200
parents 25befef48c35
children f0f354a97581
comparison
equal deleted inserted replaced
53:c2dc924f1a63 54:01aa453d4d5b
107 { 107 {
108 return false; 108 return false;
109 } 109 }
110 110
111 virtual void UpdateContent(); 111 virtual void UpdateContent();
112
113 virtual bool HasRenderMouseOver(int x,
114 int y)
115 {
116 return false;
117 }
112 }; 118 };
113 } 119 }