]> git.saurik.com Git - wxWidgets.git/commitdiff
Committing in .
authorJouk Jansen <joukj@hrem.nano.tudelft.nl>
Wed, 9 Aug 2000 09:51:03 +0000 (09:51 +0000)
committerJouk Jansen <joukj@hrem.nano.tudelft.nl>
Wed, 9 Aug 2000 09:51:03 +0000 (09:51 +0000)
 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

src/common/descrip.mms
src/generic/descrip.mms
src/unix/utilsunx.cpp

index d312a208108059354bbb8489c8e561315e05a32e..ba0d4ed8550537b4814bbc761bc31d583d414596 100644 (file)
@@ -116,6 +116,7 @@ OBJECTS1=framecmn.obj,\
                textfile.obj,\
                timercmn.obj,\
                tokenzr.obj,\
+               treebase.obj,\
                txtstrm.obj,\
                unzip.obj,\
                url.obj,\
@@ -214,6 +215,7 @@ SOURCES = \
                textfile.cpp,\
                timercmn.cpp,\
                tokenzr.cpp,\
+               treebase.cpp,\
                txtstrm.cpp,\
                unzip.c,\
                url.cpp,\
@@ -342,6 +344,7 @@ textcmn.obj : textcmn.cpp
 textfile.obj : textfile.cpp
 timercmn.obj : timercmn.cpp
 tokenzr.obj : tokenzr.cpp
+treebase.obj : treebase.cpp
 txtstrm.obj : txtstrm.cpp
 unzip.obj : unzip.c
 url.obj : url.cpp
index 2aeaa0fe8c63a3afeed834ed47a1298b122897da..e345360350a974ef3a2d7034ea6c714514c3d931 100644 (file)
@@ -30,6 +30,7 @@ OBJECTS = \
                choicdgg.obj,\
                colrdlgg.obj,\
                dcpsg.obj,\
+               dirctrlg.obj,\
                dirdlgg.obj,\
                fontdlgg.obj,\
                grid.obj,\
@@ -59,7 +60,7 @@ OBJECTS = \
                tabg.obj,\
                textdlgg.obj,\
                tipdlg.obj,\
-               treectrl.obj,\
+               treectlg.obj,\
                wizard.obj
 
 SOURCES = \
@@ -69,6 +70,7 @@ SOURCES = \
                choicdgg.cpp,\
                colrdlgg.cpp,\
                dcpsg.cpp,\
+               dirctrlg.cpp,\
                dirdlgg.cpp,\
                filedlgg.cpp,\
                fontdlgg.cpp,\
@@ -101,7 +103,7 @@ SOURCES = \
                tabg.cpp,\
                textdlgg.cpp,\
                tipdlg.cpp,\
-               treectrl.cpp,\
+               treectlg.cpp,\
                wizard.cpp
 
 .ifdef __WXMOTIF__
@@ -128,6 +130,7 @@ caret.obj : caret.cpp
 choicdgg.obj : choicdgg.cpp
 colrdlgg.obj : colrdlgg.cpp
 dcpsg.obj : dcpsg.cpp
+dirctrlg.obj : dirctrlg.cpp
 dirdlgg.obj : dirdlgg.cpp
 filedlgg.obj : filedlgg.cpp
 fontdlgg.obj : fontdlgg.cpp
@@ -160,5 +163,5 @@ tbarsmpl.obj : tbarsmpl.cpp
 tabg.obj : tabg.cpp
 textdlgg.obj : textdlgg.cpp
 tipdlg.obj : tipdlg.cpp
-treectrl.obj : treectrl.cpp
+treectlg.obj : treectlg.cpp
 wizard.obj : wizard.cpp
index dcd14f6e79b861f6bc019d49c84d6af95911aa78..b2fa90d046c031682dcb3818469cb7ced27dfad0 100644 (file)
@@ -622,6 +622,13 @@ long wxExecute(wxChar **argv,
         return exitcode;
 #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