projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Don't call busy cursor when creating a message
[wxWidgets.git]
/
src
/
gtk
/
icon.cpp
diff --git
a/src/gtk/icon.cpp
b/src/gtk/icon.cpp
index a372cb986937e65e06db475ee2835faae3b52271..05c1089158624aafc3057a570c22c04204fc849b 100644
(file)
--- a/
src/gtk/icon.cpp
+++ b/
src/gtk/icon.cpp
@@
-45,3
+45,8
@@
wxIcon& wxIcon::operator = ( const wxIcon& icon )
return *this;
}
return *this;
}
+void wxIcon::CopyFromBitmap(const wxBitmap& bmp)
+{
+ wxIcon *icon = (wxIcon*)(&bmp);
+ *this = *icon;
+}