Updates to make OpenVMS happy
Modified Files:
wxWidgets/setup.h_vms wxWidgets/include/wx/defs.h
wxWidgets/src/gtk/choice.cpp wxWidgets/src/gtk/descrip.mms
----------------------------------------------------------------------
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38261
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
#ifdef __WXGTK20__
#define G_DISABLE_DEPRECATED
#define PANGO_DISABLE_DEPRECATED
-#define GTK_DISABLE_DEPRECATED
+#ifndef __VMS
+/* GtkCombo is not defined on VMS if this is defined */
+# define GTK_DISABLE_DEPRECATED
+#endif
#endif
#endif /* __WXGTK__ */
* Use GNOME print for printing under GTK+ 2.0
*/
#define wxUSE_LIBGNOMEPRINT 0
+/*
+ * Use GNOME VFS for MIME types
+ */
+#define wxUSE_LIBGNOMEVFS 0
/*
* Use the Hildon framework
*/
}
}
+#ifdef __VMS
+#pragma message disable unscomzer
+#endif
+
int wxChoice::GtkAddHelper(GtkWidget *menu, size_t pos, const wxString& item)
{
wxCHECK_MSG((pos>=0) && (pos<=m_clientList.GetCount()), -1, wxT("invalid index"));
return index;
}
+#ifdef __VMS
+#pragma message enable unscomzer
+#endif
+
wxSize wxChoice::DoGetBestSize() const
{
wxSize ret( wxControl::DoGetBestSize() );
# *
# Make file for VMS *
# Author : J.Jansen (joukj@hrem.nano.tudelft.nl) *
-# Date : 20 February 2006 *
+# Date : 20 March 2006 *
# *
#*****************************************************************************
.first
tbargtk.obj,\
textctrl.obj,\
tglbtn.obj,\
- msgdlg.obj
+ msgdlg.obj,\
+ treeentry_gtk.obj
SOURCES =\
app.cpp,\
utilsgtk.cpp,\
utilsres.cpp,\
win_gtk.c,\
- window.cpp
+ window.cpp,\
+ treeentry_gtk.c
all : $(SOURCES)
$(MMS)$(MMSQUALIFIERS) $(OBJECTS)
utilsres.obj : utilsres.cpp
win_gtk.obj : win_gtk.c
window.obj : window.cpp
+treeentry_gtk.obj : treeentry_gtk.c