172 |
172 |
173 // ============================================================================= |
173 // ============================================================================= |
174 // ----------------------------------------------------------------------------- |
174 // ----------------------------------------------------------------------------- |
175 LDDocument* findDocument (str name) |
175 LDDocument* findDocument (str name) |
176 { for (LDDocument * file : g_loadedFiles) |
176 { for (LDDocument * file : g_loadedFiles) |
177 if (!file->getName().isEmpty() && file->getDisplayName() == name) |
177 if (!file->getName().isEmpty() && file->getName() == name) |
178 return file; |
178 return file; |
179 |
179 |
180 return null; |
180 return null; |
181 } |
181 } |
182 |
182 |