X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fforms%2Fcommandwidget.cpp;h=5f48d69761d7b4a3c132a2d787b249931470ecf2;hb=f62cebc26c7c3af447f0e4e4c43331f8589dce22;hp=62e9b5d621f1a67c2d9ecf032672220a6fc01434;hpb=16ce54abf01ca3032e42a5bb11a4afcf9014dcca;p=architektonas diff --git a/src/forms/commandwidget.cpp b/src/forms/commandwidget.cpp index 62e9b5d..5f48d69 100644 --- a/src/forms/commandwidget.cpp +++ b/src/forms/commandwidget.cpp @@ -1,8 +1,11 @@ // commandwidget.cpp // +// Part of the Architektonas Project // Originally part of QCad Community Edition by Andrew Mustun // Extensively rewritten and refactored by James L. Hammons -// (C) 2010 Underground Software +// Portions copyright (C) 2001-2003 RibbonSoft +// Copyright (C) 2010 Underground Software +// See the README and GPLv2 files for licensing and warranty information // // JLH = James L. Hammons // @@ -14,7 +17,7 @@ #include "commandwidget.h" #include "commands.h" -#include "qg_actionhandler.h" +#include "actionhandler.h" CommandWidget::CommandWidget(QWidget * parent/*= 0*/, Qt::WindowFlags flags/*= 0*/): QWidget(parent, flags), actionHandler(NULL) @@ -84,7 +87,7 @@ void CommandWidget::tabPressed() choice = actionHandler->getAvailableCommands(); if (choice.count() == 0) - choice = RS_COMMANDS->complete(typed); + choice = COMMANDS->complete(typed); for(QStringList::Iterator it=choice.begin(); it!=choice.end(); ++it) { @@ -117,7 +120,7 @@ void CommandWidget::escape() } }*/ -void CommandWidget::setActionHandler(QG_ActionHandler * ah) +void CommandWidget::setActionHandler(ActionHandler * ah) { actionHandler = ah; }