aboutsummaryrefslogtreecommitdiffstats
path: root/gui/generic
diff options
context:
space:
mode:
Diffstat (limited to 'gui/generic')
-rw-r--r--gui/generic/mainwindow.cc7
-rw-r--r--gui/generic/mainwindow.h2
2 files changed, 2 insertions, 7 deletions
diff --git a/gui/generic/mainwindow.cc b/gui/generic/mainwindow.cc
index 050c0fb8..76837ed4 100644
--- a/gui/generic/mainwindow.cc
+++ b/gui/generic/mainwindow.cc
@@ -23,7 +23,8 @@ static void initMainResource() { Q_INIT_RESOURCE(nextpnr); }
NEXTPNR_NAMESPACE_BEGIN
-MainWindow::MainWindow(std::unique_ptr<Context> context, ArchArgs args, QWidget *parent) : BaseMainWindow(std::move(context), args, parent)
+MainWindow::MainWindow(std::unique_ptr<Context> context, ArchArgs args, QWidget *parent)
+ : BaseMainWindow(std::move(context), args, parent)
{
initMainResource();
@@ -48,8 +49,4 @@ void MainWindow::createMenu() {}
void MainWindow::new_proj() {}
-void MainWindow::open_proj() {}
-
-bool MainWindow::save_proj() { return false; }
-
NEXTPNR_NAMESPACE_END
diff --git a/gui/generic/mainwindow.h b/gui/generic/mainwindow.h
index 375436b6..a4ce9958 100644
--- a/gui/generic/mainwindow.h
+++ b/gui/generic/mainwindow.h
@@ -37,8 +37,6 @@ class MainWindow : public BaseMainWindow
protected Q_SLOTS:
virtual void new_proj();
- virtual void open_proj();
- virtual bool save_proj();
void newContext(Context *ctx);
};