]> git.saurik.com Git - wxWidgets.git/blobdiff - src/xrc/xh_bmp.cpp
added GetScreenPosition/Rect() which always return the screen coordinates of the...
[wxWidgets.git] / src / xrc / xh_bmp.cpp
index 57d7985107d0ea4fdc9f5529ecc61ffe3cfa448f..4e61d5074e7b371abaa3ae043bbb2b50f3e869ff 100644 (file)
@@ -29,6 +29,8 @@ wxBitmapXmlHandler::wxBitmapXmlHandler()
 
 wxObject *wxBitmapXmlHandler::DoCreateResource()
 {
+    // NB: empty parameter name means "take directly from this node's next
+    //     instead of from subnode with given name"
     return new wxBitmap(GetBitmap(wxEmptyString));
 }
 
@@ -46,6 +48,8 @@ wxIconXmlHandler::wxIconXmlHandler()
 
 wxObject *wxIconXmlHandler::DoCreateResource()
 {
+    // NB: empty parameter name means "take directly from this node's next
+    //     instead of from subnode with given name"
     return new wxIcon(GetIcon(wxEmptyString));
 }