objdictgen/objdictedit.py
changeset 147 de96ec63a793
parent 72 68524f7c58b5
child 148 ad3de8730172
--- a/objdictgen/objdictedit.py	Wed Apr 04 13:11:49 2007 +0200
+++ b/objdictgen/objdictedit.py	Thu Apr 05 09:03:18 2007 +0200
@@ -125,6 +125,7 @@
         sys.exit()
 
 filesOpen = args
+WorkingDirectory = sys.path[0]
 
 ColSizes = [75, 250, 150, 125, 100, 60, 250]
 ColAlignements = [wxALIGN_CENTER, wxALIGN_LEFT, wxALIGN_CENTER, wxALIGN_RIGHT, wxALIGN_CENTER, wxALIGN_CENTER, wxALIGN_LEFT]
@@ -1058,13 +1059,13 @@
             if result:
                 find_index = True
                 index, subIndex = result
-                result = OpenPDFDocIndex(index)
+                result = OpenPDFDocIndex(index, WorkingDirectory)
                 if type(result) == StringType:
                     message = wxMessageDialog(self, result, "ERROR", wxOK|wxICON_ERROR)
                     message.ShowModal()
                     message.Destroy()
         if not find_index:
-            result = OpenPDFDocIndex(None)
+            result = OpenPDFDocIndex(None, WorkingDirectory)
             if type(result) == StringType:
                 message = wxMessageDialog(self, result, "ERROR", wxOK|wxICON_ERROR)
                 message.ShowModal()