]> git.saurik.com Git - wxWidgets.git/commitdiff
Committing in .
authorJouk Jansen <joukj@hrem.nano.tudelft.nl>
Fri, 12 Nov 1999 10:51:39 +0000 (10:51 +0000)
committerJouk Jansen <joukj@hrem.nano.tudelft.nl>
Fri, 12 Nov 1999 10:51:39 +0000 (10:51 +0000)
 VMS patch

 Modified Files:
  wxWindows/src/generic/dcpsg.cpp

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4489 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/dcpsg.cpp

index bc1b78711d279541166d00574f28a83de206b8bb..ad5bf7e9686f65bc4a4f8ba913ce4a295d697330 100644 (file)
@@ -1841,7 +1841,8 @@ void wxPostScriptDC::DoGetTextExtent(const wxString& string,
         }
 
 #ifdef __UNIX__
-        if (afmFile==NULL)
+#ifndef __VMS__
+       if (afmFile==NULL)
         /* please do NOT change the line above to "else if (afmFile==NULL)" -
            - afmFile = fopen() may fail and in that case the next if branch
            MUST be executed - and it would not if there was "else" */
@@ -1854,6 +1855,7 @@ void wxPostScriptDC::DoGetTextExtent(const wxString& string,
                    << name << ".afm";
            afmFile = fopen(afmName,"r");
         }
+#endif
 #endif
         
         if (afmFile==NULL)