]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/tbarbase.cpp
add SQL_CATALOG and SQL_LOG filename variables
[wxWidgets.git] / src / common / tbarbase.cpp
index 7864d099dd25b972b28cc83273fe82547017a8c2..f66ce0f3b1a52e5fdd67d221565076797934bbc3 100644 (file)
@@ -403,6 +403,15 @@ wxObject *wxToolBarBase::GetToolClientData(int id) const
     return tool ? tool->GetClientData() : (wxObject *)NULL;
 }
 
+void wxToolBarBase::SetToolClientData(int id, wxObject *clientData)
+{
+    wxToolBarToolBase *tool = FindById(id);
+
+    wxCHECK_RET( tool, _T("no such tool in wxToolBar::SetToolClientData") );
+
+    tool->SetClientData(clientData);
+}
+
 bool wxToolBarBase::GetToolState(int id) const
 {
     wxToolBarToolBase *tool = FindById(id);