allow passing URL to wxURLDataObject ctor

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40772 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-08-23 13:38:45 +00:00
parent 0d91b2342a
commit 0463eea95d
3 changed files with 11 additions and 2 deletions

View File

@@ -1163,7 +1163,7 @@ public:
wxURLDataObject::wxURLDataObject()
wxURLDataObject::wxURLDataObject(const wxString& url)
{
// we support CF_TEXT and CFSTR_SHELLURL formats which are basicly the same
// but it seems that some browsers only provide one of them so we have to
@@ -1173,6 +1173,9 @@ wxURLDataObject::wxURLDataObject()
// we don't have any data yet
m_dataObjectLast = NULL;
if ( !url.empty() )
SetURL(url);
}
bool wxURLDataObject::SetData(const wxDataFormat& format,