Fixed warning about hiding BView::Perform().
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37733 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
14d604ddfa
commit
ad98c7f4af
@ -314,6 +314,17 @@ StateView::KeyUp(const char* bytes, int32 numBytes)
|
||||
BView::KeyUp(bytes, numBytes);
|
||||
}
|
||||
|
||||
|
||||
// #pragma mark -
|
||||
|
||||
|
||||
status_t
|
||||
StateView::Perform(perform_code code, void* data)
|
||||
{
|
||||
return BView::Perform(code, data);
|
||||
}
|
||||
|
||||
|
||||
// #pragma mark -
|
||||
|
||||
// SetState
|
||||
|
@ -38,6 +38,9 @@ class StateView : public BView {
|
||||
virtual void KeyDown(const char* bytes, int32 numBytes);
|
||||
virtual void KeyUp(const char* bytes, int32 numBytes);
|
||||
|
||||
virtual status_t Perform(perform_code code, void* data);
|
||||
// Avoids warning about hiding BView::Perform().
|
||||
|
||||
// StateView interface
|
||||
void SetState(ViewState* state);
|
||||
void UpdateStateCursor();
|
||||
|
Loading…
Reference in New Issue
Block a user