fix iOS build after adding modifierKeys to click events

git-svn-id: http://skia.googlecode.com/svn/trunk@7107 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
reed@google.com 2013-01-09 16:36:30 +00:00
parent e760445970
commit b6c933cc9b
2 changed files with 0 additions and 7 deletions

View File

@ -16,9 +16,6 @@ public:
~SkOSWindow();
void* getHWND() const { return fHWND; }
virtual bool onDispatchClick(int x, int y, Click::State state,
void* owner, unsigned modi);
enum SkBackEndTypes {
kNone_BackEndType,
kNativeGL_BackEndType,

View File

@ -38,10 +38,6 @@ bool SkOSWindow::onEvent(const SkEvent& evt) {
return this->INHERITED::onEvent(evt);
}
bool SkOSWindow::onDispatchClick(int x, int y, Click::State state, void* owner) {
return this->INHERITED::onDispatchClick(x, y, state, owner);
}
void SkOSWindow::onSetTitle(const char title[]) {
[(SkUIView*)fHWND setSkTitle:title];
}