]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/tipdlg.cpp
warning fixes unsigned->signed
[wxWidgets.git] / src / generic / tipdlg.cpp
index 94370f2542335572a05ed735f0e733dde4b6da49..bd27ad93133bec4b0c8e06aae8afcbe70899a1b8 100644 (file)
@@ -225,7 +225,8 @@ wxTipDialog::wxTipDialog(wxWindow *parent,
     // 1) create all controls in tab order
 
 #ifndef __SMARTPHONE__
-    wxButton *btnClose = new wxButton(this, wxID_CANCEL, wxSTOCK_CLOSE);
+    // FIXME: use stock wxID_CLOSE button here!
+    wxButton *btnClose = new wxButton(this, wxID_CANCEL, _("Close"));
 #endif
 
     m_checkbox = new wxCheckBox(this, wxID_ANY, _("&Show tips at startup"));