projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
removed obsolete file
[wxWidgets.git]
/
src
/
common
/
cshelp.cpp
diff --git
a/src/common/cshelp.cpp
b/src/common/cshelp.cpp
index 8071439665edb70c72b635a68d78b4b04534557e..17b26dae3616a4b217f2a93eee3996e1a2b6e854 100644
(file)
--- a/
src/common/cshelp.cpp
+++ b/
src/common/cshelp.cpp
@@
-326,30
+326,34
@@
wxHelpProvider::~wxHelpProvider()
wxString wxSimpleHelpProvider::GetHelp(const wxWindowBase *window)
{
wxString wxSimpleHelpProvider::GetHelp(const wxWindowBase *window)
{
- bool wasFound;
- wxString text = m_hashWindows.Get((long)window, &wasFound);
- if ( !wasFound )
- text = m_hashIds.Get(window->GetId());
+ wxLongToStringHashMap::iterator it = m_hashWindows.find((long)window);
- return text;
+ if ( it == m_hashWindows.end() )
+ {
+ it = m_hashIds.find(window->GetId());
+ if ( it == m_hashIds.end() )
+ return wxEmptyString;
+ }
+
+ return it->second;
}
void wxSimpleHelpProvider::AddHelp(wxWindowBase *window, const wxString& text)
{
}
void wxSimpleHelpProvider::AddHelp(wxWindowBase *window, const wxString& text)
{
- m_hashWindows.
Delet
e((long)window);
- m_hashWindows
.Put((long)window, text)
;
+ m_hashWindows.
eras
e((long)window);
+ m_hashWindows
[(long)window] = text
;
}
void wxSimpleHelpProvider::AddHelp(wxWindowID id, const wxString& text)
{
}
void wxSimpleHelpProvider::AddHelp(wxWindowID id, const wxString& text)
{
- m_hashIds.
Delet
e((long)id);
- m_hashIds
.Put(id, text)
;
+ m_hashIds.
eras
e((long)id);
+ m_hashIds
[id] = text
;
}
// removes the association
void wxSimpleHelpProvider::RemoveHelp(wxWindowBase* window)
{
}
// removes the association
void wxSimpleHelpProvider::RemoveHelp(wxWindowBase* window)
{
- m_hashWindows.
Delet
e((long)window);
+ m_hashWindows.
eras
e((long)window);
}
bool wxSimpleHelpProvider::ShowHelp(wxWindowBase *window)
}
bool wxSimpleHelpProvider::ShowHelp(wxWindowBase *window)