X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f50d84586a757fd5116c8dd37c795c0021526c9e..16a2525ff288d91605e5b54fc6ac269b45dddf7d:/src/common/docview.cpp diff --git a/src/common/docview.cpp b/src/common/docview.cpp index e2ff18c915..86d1783490 100644 --- a/src/common/docview.cpp +++ b/src/common/docview.cpp @@ -1894,6 +1894,20 @@ void wxDocManager::DisassociateTemplate(wxDocTemplate *temp) m_templates.DeleteObject(temp); } +wxDocTemplate* wxDocManager::FindTemplate(const wxClassInfo* classinfo) +{ + for ( wxList::compatibility_iterator node = m_templates.GetFirst(); + node; + node = node->GetNext() ) + { + wxDocTemplate* t = wxStaticCast(node->GetData(), wxDocTemplate); + if ( t->GetDocClassInfo() == classinfo ) + return t; + } + + return NULL; +} + // Add and remove a document from the manager's list void wxDocManager::AddDocument(wxDocument *doc) {