diff options
| author | 2020-07-21 06:15:16 -0400 | |
|---|---|---|
| committer | 2020-07-21 06:15:16 -0400 | |
| commit | 37a7155ea7c504b308a8afa642c653a12bbe5f84 (patch) | |
| tree | bd68ea5d2a2400dcd04b1aa85617534e66aba94c /src/lib/base/EventQueue.h | |
| parent | 1ae09e76cde035d716763fc88b570535884cd50f (diff) | |
| parent | fbc30002ab3438356c0476e70c4577a0310d52c0 (diff) | |
Update upstream source from tag 'upstream/2.3.3+dfsg'
Update to upstream version '2.3.3+dfsg'
with Debian dir f7eeed313bc1a4c2bda69f04f0316ee29651397f
Diffstat (limited to 'src/lib/base/EventQueue.h')
| -rw-r--r-- | src/lib/base/EventQueue.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/lib/base/EventQueue.h b/src/lib/base/EventQueue.h index 0a2179b..842c5ca 100644 --- a/src/lib/base/EventQueue.h +++ b/src/lib/base/EventQueue.h @@ -58,11 +58,9 @@ public: virtual void removeHandlers(void* target); virtual Event::Type registerTypeOnce(Event::Type& type, const char* name); - virtual bool isEmpty() const; virtual IEventJob* getHandler(Event::Type type, void* target) const; virtual const char* getTypeName(Event::Type type); - virtual Event::Type - getRegisteredType(const String& name) const; + virtual Event::Type getRegisteredType(const std::string& name) const; void* getSystemTarget(); virtual void waitForReady() const; @@ -108,7 +106,7 @@ private: typedef std::map<UInt32, Event> EventTable; typedef std::vector<UInt32> EventIDList; typedef std::map<Event::Type, const char*> TypeMap; - typedef std::map<String, Event::Type> NameMap; + typedef std::map<std::string, Event::Type> NameMap; typedef std::map<Event::Type, IEventJob*> TypeHandlerTable; typedef std::map<void*, TypeHandlerTable> HandlerTable; |
