Committing in .
Modified Files: wxWindows/src/common/descrip.mms wxWindows/src/generic/descrip.mms wxWindows/src/unix/utilsunx.cpp Updates for VMS ---------------------------------------------------------------------- git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@7984 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -116,6 +116,7 @@ OBJECTS1=framecmn.obj,\
|
|||||||
textfile.obj,\
|
textfile.obj,\
|
||||||
timercmn.obj,\
|
timercmn.obj,\
|
||||||
tokenzr.obj,\
|
tokenzr.obj,\
|
||||||
|
treebase.obj,\
|
||||||
txtstrm.obj,\
|
txtstrm.obj,\
|
||||||
unzip.obj,\
|
unzip.obj,\
|
||||||
url.obj,\
|
url.obj,\
|
||||||
@@ -214,6 +215,7 @@ SOURCES = \
|
|||||||
textfile.cpp,\
|
textfile.cpp,\
|
||||||
timercmn.cpp,\
|
timercmn.cpp,\
|
||||||
tokenzr.cpp,\
|
tokenzr.cpp,\
|
||||||
|
treebase.cpp,\
|
||||||
txtstrm.cpp,\
|
txtstrm.cpp,\
|
||||||
unzip.c,\
|
unzip.c,\
|
||||||
url.cpp,\
|
url.cpp,\
|
||||||
@@ -342,6 +344,7 @@ textcmn.obj : textcmn.cpp
|
|||||||
textfile.obj : textfile.cpp
|
textfile.obj : textfile.cpp
|
||||||
timercmn.obj : timercmn.cpp
|
timercmn.obj : timercmn.cpp
|
||||||
tokenzr.obj : tokenzr.cpp
|
tokenzr.obj : tokenzr.cpp
|
||||||
|
treebase.obj : treebase.cpp
|
||||||
txtstrm.obj : txtstrm.cpp
|
txtstrm.obj : txtstrm.cpp
|
||||||
unzip.obj : unzip.c
|
unzip.obj : unzip.c
|
||||||
url.obj : url.cpp
|
url.obj : url.cpp
|
||||||
|
@@ -30,6 +30,7 @@ OBJECTS = \
|
|||||||
choicdgg.obj,\
|
choicdgg.obj,\
|
||||||
colrdlgg.obj,\
|
colrdlgg.obj,\
|
||||||
dcpsg.obj,\
|
dcpsg.obj,\
|
||||||
|
dirctrlg.obj,\
|
||||||
dirdlgg.obj,\
|
dirdlgg.obj,\
|
||||||
fontdlgg.obj,\
|
fontdlgg.obj,\
|
||||||
grid.obj,\
|
grid.obj,\
|
||||||
@@ -59,7 +60,7 @@ OBJECTS = \
|
|||||||
tabg.obj,\
|
tabg.obj,\
|
||||||
textdlgg.obj,\
|
textdlgg.obj,\
|
||||||
tipdlg.obj,\
|
tipdlg.obj,\
|
||||||
treectrl.obj,\
|
treectlg.obj,\
|
||||||
wizard.obj
|
wizard.obj
|
||||||
|
|
||||||
SOURCES = \
|
SOURCES = \
|
||||||
@@ -69,6 +70,7 @@ SOURCES = \
|
|||||||
choicdgg.cpp,\
|
choicdgg.cpp,\
|
||||||
colrdlgg.cpp,\
|
colrdlgg.cpp,\
|
||||||
dcpsg.cpp,\
|
dcpsg.cpp,\
|
||||||
|
dirctrlg.cpp,\
|
||||||
dirdlgg.cpp,\
|
dirdlgg.cpp,\
|
||||||
filedlgg.cpp,\
|
filedlgg.cpp,\
|
||||||
fontdlgg.cpp,\
|
fontdlgg.cpp,\
|
||||||
@@ -101,7 +103,7 @@ SOURCES = \
|
|||||||
tabg.cpp,\
|
tabg.cpp,\
|
||||||
textdlgg.cpp,\
|
textdlgg.cpp,\
|
||||||
tipdlg.cpp,\
|
tipdlg.cpp,\
|
||||||
treectrl.cpp,\
|
treectlg.cpp,\
|
||||||
wizard.cpp
|
wizard.cpp
|
||||||
|
|
||||||
.ifdef __WXMOTIF__
|
.ifdef __WXMOTIF__
|
||||||
@@ -128,6 +130,7 @@ caret.obj : caret.cpp
|
|||||||
choicdgg.obj : choicdgg.cpp
|
choicdgg.obj : choicdgg.cpp
|
||||||
colrdlgg.obj : colrdlgg.cpp
|
colrdlgg.obj : colrdlgg.cpp
|
||||||
dcpsg.obj : dcpsg.cpp
|
dcpsg.obj : dcpsg.cpp
|
||||||
|
dirctrlg.obj : dirctrlg.cpp
|
||||||
dirdlgg.obj : dirdlgg.cpp
|
dirdlgg.obj : dirdlgg.cpp
|
||||||
filedlgg.obj : filedlgg.cpp
|
filedlgg.obj : filedlgg.cpp
|
||||||
fontdlgg.obj : fontdlgg.cpp
|
fontdlgg.obj : fontdlgg.cpp
|
||||||
@@ -160,5 +163,5 @@ tbarsmpl.obj : tbarsmpl.cpp
|
|||||||
tabg.obj : tabg.cpp
|
tabg.obj : tabg.cpp
|
||||||
textdlgg.obj : textdlgg.cpp
|
textdlgg.obj : textdlgg.cpp
|
||||||
tipdlg.obj : tipdlg.cpp
|
tipdlg.obj : tipdlg.cpp
|
||||||
treectrl.obj : treectrl.cpp
|
treectlg.obj : treectlg.cpp
|
||||||
wizard.obj : wizard.cpp
|
wizard.obj : wizard.cpp
|
||||||
|
@@ -622,6 +622,13 @@ long wxExecute(wxChar **argv,
|
|||||||
return exitcode;
|
return exitcode;
|
||||||
#endif // wxUSE_GUI
|
#endif // wxUSE_GUI
|
||||||
}
|
}
|
||||||
|
#ifdef __VMS
|
||||||
|
// VMS does not recognise exit as a return and complains about
|
||||||
|
// a missing return
|
||||||
|
// I think VMS is wrong in this
|
||||||
|
// JJ
|
||||||
|
return 0;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
#undef ARGS_CLEANUP
|
#undef ARGS_CLEANUP
|
||||||
|
Reference in New Issue
Block a user