wxWidgets/include/wx/propgrid
Dimitri Schoolwerth 6636ef8ddf Use wxString's empty() when checking if the string is (non-)empty throughout wx.
Instead of constructs such as if "( s.length() )" and "if (s.length() > 0)" use "if ( !s.empty() )" instead. Similarly for "if (s.length() == 0)" or "if ( s.IsNull() )", use "if ( s.empty() )".
No code changes intended except for a few instances where a construct like "if ( s.length() && wxFileExists(s) )" was changed to not check the length of the string and let wxFileExists handle such cases.



git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66728 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2011-01-22 14:38:36 +00:00
..
advprops.h Added 'HasAlpha' attribute for wxColourProperty. Setting it to true allows user to edit the alpha component. 2011-01-02 10:14:29 +00:00
editors.h Added missing wx/defs.h includes in propgrid headers 2010-08-26 13:25:07 +00:00
manager.h No longer use semi-static IDs for wxPropertyGrid embedded controls and tool bar tools. 2010-12-27 11:17:40 +00:00
property.h Added 'HasAlpha' attribute for wxColourProperty. Setting it to true allows user to edit the alpha component. 2011-01-02 10:14:29 +00:00
propgrid.h Bring AddActionTrigger() doc string up to date with the interface 2010-12-22 17:43:49 +00:00
propgriddefs.h Streamline wxPropertyGrid tooltip code 2010-09-23 12:58:02 +00:00
propgridiface.h Fix build with Borland C++ compiler. 2010-11-07 13:16:20 +00:00
propgridpagestate.h Have wxPropertyGrid inherit from wxControl and wxScrollHelper instead of wxScrolledWindow. This is the approach other scrolled controls use. 2010-09-24 14:47:20 +00:00
props.h Use wxString's empty() when checking if the string is (non-)empty throughout wx. 2011-01-22 14:38:36 +00:00