~ubuntu-branches/ubuntu/trusty/codeblocks/trusty-proposed

« back to all changes in this revision

Viewing changes to src/plugins/contrib/wxSmith/wxsresourcetree.h

  • Committer: Bazaar Package Importer
  • Author(s): David Paleino
  • Date: 2011-01-22 20:58:57 UTC
  • mfrom: (3.1.3 maverick)
  • Revision ID: james.westby@ubuntu.com-20110122205857-mlwokxogiic0dnu7
Tags: 10.05-1
* Initial Debian release (Closes: #304570)
* Setting myself as Maintainer, original Ubuntu maintainer set as
  Uploader
* Use debian/watch to get the original tarball, instead of an ad-hoc
  script
* Wrap multivalue fields in debian/control
* Update debian/copyright with lots of missing info, and use DEP-5
* Add missing linkage to libX11 (03-fix_libX11_linkage.patch)
* Use dh7 for debian/rules
* Build-Depend on dh-autoreconf, since we need to re-generate autotools
  machinery (libtool version mismatch)
* Migrate from libwxsmithlib0-dev to libwxsmithlib-dev, to ease
  future SONAME bumps.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
* You should have received a copy of the GNU General Public License
16
16
* along with wxSmith. If not, see <http://www.gnu.org/licenses/>.
17
17
*
18
 
* $Revision: 4850 $
19
 
* $Id: wxsresourcetree.h 4850 2008-01-29 21:45:49Z byo $
20
 
* $HeadURL: svn://svn.berlios.de/codeblocks/tags/8.02/src/plugins/contrib/wxSmith/wxsresourcetree.h $
 
18
* $Revision: 5243 $
 
19
* $Id: wxsresourcetree.h 5243 2008-10-06 19:31:44Z killerbot $
 
20
* $HeadURL: svn+ssh://jenslody@svn.berlios.de/svnroot/repos/codeblocks/trunk/src/plugins/contrib/wxSmith/wxsresourcetree.h $
21
21
*/
22
22
 
23
23
#ifndef WXSRESOURCETREE_H
24
24
#define WXSRESOURCETREE_H
25
25
 
26
 
#ifndef WX_PRECOMP
27
 
#   ifdef __WXMSW__
28
 
#       include <wx/msw/wrapwin.h>  // Needed to prevent LoadImage define bug.
29
 
#   endif
30
 
#endif
31
 
 
32
26
#include <wx/treectrl.h>
33
27
#include "wxsresourcetreeitemdata.h"
34
28
 
 
29
#if defined(__WXMSW__) && defined(LoadImage)
 
30
    // Fix Windows winuser.h Header define of LoadImage.
 
31
    #undef LoadImage
 
32
#endif
 
33
 
 
34
 
35
35
class wxsResource;
36
36
class wxsProject;
37
37