/* * Copyright (c) 2011 Vlad Voicu * Licensed under the Simplified BSD license. * See Documentation/Licenses/BSD-simplified.txt for more information. */ #include "QtViewHistoryWindow.h" #include #include namespace Swift { QtViewHistoryWindow::QtViewHistoryWindow() { ui.setupUi(this); show(); } void QtViewHistoryWindow::show() { QWidget::show(); QWidget::activateWindow(); } void QtViewHistoryWindow::setEnabled(bool enabled) { QWidget::setEnabled(enabled); } }