Fix OxFSTreeView to properly list added files

This commit is contained in:
2017-08-19 12:31:53 -05:00
parent d8a3cd5dfb
commit 7a6174953d
9 changed files with 95 additions and 30 deletions
+4
View File
@@ -22,6 +22,7 @@
#include <ox/std/types.hpp>
#include "lib/oxfstreeview.hpp"
#include "lib/plugin.hpp"
#include "lib/project.hpp"
@@ -88,6 +89,7 @@ class MainWindow: public QMainWindow {
QVector<QPointer<QDockWidget>> m_dockWidgets;
QTreeView *m_projectExplorer = nullptr;
QVector<Plugin*> m_plugins;
QPointer<OxFSModel> m_oxfsView = nullptr;
public:
MainWindow(QString profilePath);
@@ -127,6 +129,8 @@ class MainWindow: public QMainWindow {
void showNewWizard();
void showImportWizard();
void refreshProjectExplorer(QString path);
};
}