812 #include "actions.h" |
812 #include "actions.h" |
813 |
813 |
814 void ForgeWindow::updateFileList() |
814 void ForgeWindow::updateFileList() |
815 { ui->fileList->clear(); |
815 { ui->fileList->clear(); |
816 |
816 |
817 for (LDFile * f : g_loadedFiles) |
817 for (LDFile* f : g_loadedFiles) |
818 { // Don't list implicit files unless explicitly desired. |
818 { // Don't list implicit files unless explicitly desired. |
819 if (f->implicit() && !gui_implicitfiles) |
819 if (f->implicit() && !gui_implicitfiles) |
820 continue; |
820 continue; |
821 |
821 |
822 // Add an item to the list for this file and store a pointer to it in |
822 // Add an item to the list for this file and store a pointer to it in |