A few (cross-)compilation fixes

This commit is contained in:
Olivier Teulière 2005-04-20 19:48:59 +00:00
parent 1895268549
commit 87b146f9d6
3 changed files with 6 additions and 7 deletions

View file

@ -16,7 +16,7 @@
/* along with this program; if not, write to the Free Software */
/* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
/* $Id: confdimdlg.cc,v 1.3 2005/02/05 11:14:56 ipkiss Exp $ */
/* $Id: confdimdlg.cc,v 1.4 2005/04/20 19:48:59 ipkiss Exp $ */
#include "wx/printdlg.h"
@ -60,7 +60,7 @@ max(int i,int j)
ConfDimDlg::ConfDimDlg(wxWindow* parent, wxPrintData pd, wxPageSetupData psd)
: wxDialog(parent,-1,wxT("Eliot : Impression"))
: wxDialog(parent, -1, wxString(wxT("Eliot : Impression")))
{
int i;
wxString choices[3];
@ -74,7 +74,7 @@ ConfDimDlg::ConfDimDlg(wxWindow* parent, wxPrintData pd, wxPageSetupData psd)
wxRect Hspacesrect[5];
wxStaticText* Tcomment[5];
wxRect Tcommentrect[5];
wxRect Tdimrect[5];
wxRect Tdimrect[5];
wxStaticText* Tunit[5];
wxRect Tjustrect[5];
wxRect Tspacesrect[5];

View file

@ -16,7 +16,7 @@
/* along with this program; if not, write to the Free Software */
/* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
/* $Id: confsearch.cc,v 1.4 2005/03/29 08:05:18 afrab Exp $ */
/* $Id: confsearch.cc,v 1.5 2005/04/20 19:48:59 ipkiss Exp $ */
#include "ewx.h"
#include "wx/sizer.h"
@ -37,7 +37,7 @@ END_EVENT_TABLE()
ConfSearchDlg::ConfSearchDlg(wxWindow* parent)
: wxDialog(parent,-1,wxT("Configuration recherche"))
: wxDialog(parent, -1, wxString(wxT("Configuration recherche")))
{
joker_searching = new wxCheckBox(this,CheckBox_Joker,wxT("Recherche sur joker dans 7+1"));

View file

@ -16,7 +16,7 @@
/* along with this program; if not, write to the Free Software */
/* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
/* $Id: ewx.h,v 1.5 2005/04/03 21:12:03 ipkiss Exp $ */
/* $Id: ewx.h,v 1.6 2005/04/20 19:48:59 ipkiss Exp $ */
#ifndef __EWX__
#define __EWX__
@ -47,7 +47,6 @@
#include "config.h"
#define APPNAME "Eliot"
#define DATE "$Date: 2005/04/03 21:12:03 $"
// wxU is used to convert ansi/utf8 strings to unicode strings (wchar_t)
#if defined( ENABLE_NLS ) && defined( ENABLE_UTF8 )