aboutsummaryrefslogtreecommitdiff
path: root/src/gui/main-window.cc
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2013-04-06 19:51:52 +0000
committerdos-reis <gdr@axiomatics.org>2013-04-06 19:51:52 +0000
commitbd75087b59c92f3977e4781453765113d075f78b (patch)
treee32b1b1cd3bcf62a62a860938eefe900fb7a6439 /src/gui/main-window.cc
parentc23c47f33c926a01dde7a2f1da28ab1f863de6b5 (diff)
downloadopen-axiom-bd75087b59c92f3977e4781453765113d075f78b.tar.gz
gui: make FS part of the main window
Diffstat (limited to 'src/gui/main-window.cc')
-rw-r--r--src/gui/main-window.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/main-window.cc b/src/gui/main-window.cc
index c429d753..ea8b94f5 100644
--- a/src/gui/main-window.cc
+++ b/src/gui/main-window.cc
@@ -1,4 +1,4 @@
-// Copyright (C) 2011, Gabriel Dos Reis.
+// Copyright (C) 2011-2013, Gabriel Dos Reis.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
@@ -55,7 +55,7 @@ namespace OpenAxiom {
w->resize(w->size() + diff);
}
- MainWindow::MainWindow(Command& cmd) : tabs(this) {
+ MainWindow::MainWindow(Command& cmd) : fs(cmd.root_dir), tabs(this) {
setCentralWidget(&tabs);
Debate* debate = new Debate(&tabs, cmd);
tabs.addTab(debate, "Main Frame");