summaryrefslogtreecommitdiff
path: root/wx+/button.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:19:14 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:19:14 +0200
commit01eb8253196672c969a39587e90b49321a182428 (patch)
tree4a3b71d7913de519744466c9227fda6461c4f0b5 /wx+/button.h
parent5.0 (diff)
downloadFreeFileSync-01eb8253196672c969a39587e90b49321a182428.tar.gz
FreeFileSync-01eb8253196672c969a39587e90b49321a182428.tar.bz2
FreeFileSync-01eb8253196672c969a39587e90b49321a182428.zip
5.1
Diffstat (limited to 'wx+/button.h')
-rw-r--r--wx+/button.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/wx+/button.h b/wx+/button.h
index 471a5b5a..bf741945 100644
--- a/wx+/button.h
+++ b/wx+/button.h
@@ -24,18 +24,18 @@ public:
const wxValidator& validator = wxDefaultValidator,
const wxString& name = wxButtonNameStr);
- void setBitmapFront(const wxBitmap& bitmap, unsigned spaceAfter = 0);
+ void setBitmapFront(const wxBitmap& bitmap, size_t spaceAfter = 0);
void setTextLabel( const wxString& text);
- void setBitmapBack( const wxBitmap& bitmap, unsigned spaceBefore = 0);
+ void setBitmapBack( const wxBitmap& bitmap, size_t spaceBefore = 0);
private:
wxBitmap createBitmapFromText(const wxString& text);
void refreshButtonLabel();
wxBitmap bitmapFront;
- unsigned m_spaceAfter;
+ unsigned int m_spaceAfter;
wxString textLabel;
- unsigned m_spaceBefore;
+ unsigned int m_spaceBefore;
wxBitmap bitmapBack;
};
bgstack15