summaryrefslogtreecommitdiff
path: root/ui/viewframe.h
diff options
context:
space:
mode:
authorBrian Potchik <brian@vector35.com>2019-08-19 15:42:19 -0400
committerBrian Potchik <brian@vector35.com>2019-08-19 15:42:19 -0400
commit7ac6628279ed71884a122bc9ba8685776f9c4344 (patch)
treed6bf4be5c939185674a3ee3f4592234c4f8a8b21 /ui/viewframe.h
parent614ad620540ec271d08de6b4843949de4368df7a (diff)
Add file-backed only mode toggle to feature map context menu.
Diffstat (limited to 'ui/viewframe.h')
-rw-r--r--ui/viewframe.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/viewframe.h b/ui/viewframe.h
index fefc72d2..a4c3940d 100644
--- a/ui/viewframe.h
+++ b/ui/viewframe.h
@@ -211,7 +211,7 @@ public:
bool isGraphViewPreferred() { return m_graphViewPreferred; }
void setGraphViewPreferred(bool graphViewPreferred) { m_graphViewPreferred = graphViewPreferred; }
void focus();
- void closeFeatureMap();
+ void closeFeatureMap(bool recreate = false);
QWidget* createFeatureMap();
void refreshFeatureMap();
@@ -262,10 +262,10 @@ public Q_SLOTS:
virtual void compile();
private Q_SLOTS:
- void deleteFeatureMap();
+ void deleteFeatureMap(bool recreate);
Q_SIGNALS:
- void notifyCloseFeatureMap();
+ void notifyCloseFeatureMap(bool recreate);
void notifyViewChanged(ViewFrame* frame);
};