From: Jouk Jansen Date: Wed, 16 May 2007 10:04:24 +0000 (+0000) Subject: OpenVMS changes X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/0f0223d38ac1ba2a73e63a18313b91350f1f2184 OpenVMS changes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46066 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/descrip.mms b/descrip.mms index 30f2d0c1f3..0539ab9e19 100644 --- a/descrip.mms +++ b/descrip.mms @@ -236,7 +236,6 @@ motif : [.include.wx]setup.h library [--.lib]libwx_motif.olb [.CXX_REPOSITORY]*.obj set default [-.aui] $(MMS)$(MMSQUALIFIERS)/macro=(__WXMOTIF__=1) - library [--.lib]libwx_motif.olb [.CXX_REPOSITORY]*.obj set default [-.motif] $(MMS)$(MMSQUALIFIERS)/macro=(__WXMOTIF__=1) library [--.lib]libwx_motif.olb [.CXX_REPOSITORY]*.obj diff --git a/setup.h_vms b/setup.h_vms index 3986688c00..02aa617197 100644 --- a/setup.h_vms +++ b/setup.h_vms @@ -3,7 +3,7 @@ * Template for the set.h file for VMS * * Created from setup.h_in * * Author : J.Jansen (joukj@hrem.nano.tudelft.nl) * - * Date : 17 April 2007 * + * Date : 16 May 2007 * * * *****************************************************************************/ @@ -343,6 +343,7 @@ typedef pid_t GPid; #define wxUSE_DATAVIEWCTRL 1 #define wxUSE_DATEPICKCTRL 1 #define wxUSE_DIRPICKERCTRL 1 +#define wxUSE_EDITABLELISTBOX 1 #define wxUSE_FILEPICKERCTRL 1 #define wxUSE_FONTPICKERCTRL 1 #define wxUSE_GAUGE 1 @@ -591,6 +592,8 @@ typedef pid_t GPid; #define wxUSE_UNICODE_UTF8 0 +#define wxUSE_UTF8_LOCALE_ONLY 0 + #define wxUSE_DC_CACHEING 1 #define wxUSE_GADGETS 1 @@ -1236,6 +1239,9 @@ typedef pid_t GPid; /* Define if you have Pango xft support */ #undef HAVE_PANGO_XFT +/* Define if you have the header file. */ +#undef HAVE_SYS_EPOLL_H + /* Define if fdopen is available. */ #define HAVE_FDOPEN 1 diff --git a/src/common/descrip.mms b/src/common/descrip.mms index de3d44b9a5..337ddb4eb0 100644 --- a/src/common/descrip.mms +++ b/src/common/descrip.mms @@ -2,7 +2,7 @@ # * # Make file for VMS * # Author : J.Jansen (joukj@hrem.nano.tudelft.nl) * -# Date : 19 April 2007 * +# Date : 24 April 2007 * # * #***************************************************************************** .first @@ -182,6 +182,7 @@ OBJECTS2=tbarbase.obj,\ textcmn.obj,\ textfile.obj,\ timercmn.obj,\ + timerimpl.obj,\ tokenzr.obj,\ toplvcmn.obj,\ treebase.obj,\ @@ -354,6 +355,7 @@ SOURCES = \ textcmn.cpp,\ textfile.cpp,\ timercmn.cpp,\ + timerimpl.cpp,\ tokenzr.cpp,\ toplvcmn.cpp,\ treebase.cpp,\ @@ -566,6 +568,7 @@ textbuf.obj : textbuf.cpp textcmn.obj : textcmn.cpp textfile.obj : textfile.cpp timercmn.obj : timercmn.cpp +timerimpl.obj : timerimpl.cpp tokenzr.obj : tokenzr.cpp toplvcmn.obj : toplvcmn.cpp treebase.obj : treebase.cpp diff --git a/src/gtk1/utilsgtk.cpp b/src/gtk1/utilsgtk.cpp index 8e8b604bda..0626cfa377 100644 --- a/src/gtk1/utilsgtk.cpp +++ b/src/gtk1/utilsgtk.cpp @@ -215,3 +215,14 @@ void wxGUIAppTraits::SetLocale() } #endif +wxString +wxGUIAppTraits::GetStandardCmdLineOptions(wxArrayString& names, + wxArrayString& desc) const +{ + wxString usage; + + wxUnusedVar(names); + wxUnusedVar(desc); + + return usage; +} diff --git a/src/unix/descrip.mms b/src/unix/descrip.mms index 5aabe90bbe..984e899de9 100644 --- a/src/unix/descrip.mms +++ b/src/unix/descrip.mms @@ -2,7 +2,7 @@ # * # Make file for VMS * # Author : J.Jansen (joukj@hrem.nano.tudelft.nl) * -# Date : 13 February 2006 * +# Date : 24 April 2007 * # * #***************************************************************************** .first @@ -60,7 +60,8 @@ OBJECTS = baseunix.obj,\ sound.obj,\ sound_sdl.obj,\ stdpaths.obj,\ - taskbarx11.obj + taskbarx11.obj,\ + timerunx.obj SOURCES = baseunix.cpp,\ dialup.cpp,\ @@ -79,7 +80,8 @@ SOURCES = baseunix.cpp,\ sound.cpp,\ sound_sdl.cpp,\ stdpaths.cpp,\ - taskbarx11.cpp + taskbarx11.cpp,\ + timerunx.cpp all : $(SOURCES) $(MMS)$(MMSQUALIFIERS) $(OBJECTS) @@ -118,3 +120,4 @@ sound_sdl.obj : sound_sdl.cpp stdpaths.obj : stdpaths.cpp taskbarx11.obj : taskbarx11.cpp displayx11.obj : displayx11.cpp +timerunx.obj : timerunx.cpp diff --git a/src/x11/bitmap.cpp b/src/x11/bitmap.cpp index 2af78decca..ba6ebacd0e 100644 --- a/src/x11/bitmap.cpp +++ b/src/x11/bitmap.cpp @@ -1359,7 +1359,7 @@ bool wxXPMFileHandler::LoadFile(wxBitmap *bitmap, const wxString& name, Pixmap mask = 0; int ErrorStatus = XpmReadFileToPixmap( xdisplay, xroot, - (char*) name.c_str(), + (char*) ((const char*) name.c_str()), &pixmap, &mask, &xpmAttr); if (ErrorStatus == XpmSuccess)