src/document.cc

changeset 577
17a88e2470c9
parent 576
d26334c6b7fd
child 579
4e140de264d2
equal deleted inserted replaced
576:d26334c6b7fd 577:17a88e2470c9
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

mercurial