From 2d3a37b290b9fbd9be7a7fc4e722b30bb160ffd5 Mon Sep 17 00:00:00 2001 From: Renaud G Date: Thu, 27 Aug 2015 01:29:45 +0200 Subject: disable the highlight --- node/helpnode.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'node/helpnode.cpp') diff --git a/node/helpnode.cpp b/node/helpnode.cpp index 6108e4d..62dc86e 100644 --- a/node/helpnode.cpp +++ b/node/helpnode.cpp @@ -9,6 +9,7 @@ void HelpNode::run(ExecutionNode* previous) { m_previousNode = previous; StringResult* txtResult = dynamic_cast(m_result); + txtResult->setHighLight(false); if(NULL != previous) { -- cgit v1.2.3-70-g09d2 From 28867d0554db6cc68d295e41927e31f7e27fe135 Mon Sep 17 00:00:00 2001 From: Renaud G Date: Tue, 1 Sep 2015 16:33:41 +0200 Subject: add gpl header --- node/helpnode.cpp | 19 +++++++++++++++++++ node/helpnode.h | 19 +++++++++++++++++++ 2 files changed, 38 insertions(+) (limited to 'node/helpnode.cpp') diff --git a/node/helpnode.cpp b/node/helpnode.cpp index 62dc86e..dd5f087 100644 --- a/node/helpnode.cpp +++ b/node/helpnode.cpp @@ -1,3 +1,22 @@ +/*************************************************************************** + * Copyright (C) 2015 by Renaud Guezennec * + * http://renaudguezennec.homelinux.org/accueil,3.html * + * * + * rolisteam is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ #include "helpnode.h" HelpNode::HelpNode() diff --git a/node/helpnode.h b/node/helpnode.h index 88a0842..be21b67 100644 --- a/node/helpnode.h +++ b/node/helpnode.h @@ -1,3 +1,22 @@ +/*************************************************************************** + * Copyright (C) 2015 by Renaud Guezennec * + * http://renaudguezennec.homelinux.org/accueil,3.html * + * * + * rolisteam is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ #ifndef HELPNODE_H #define HELPNODE_H #include "executionnode.h" -- cgit v1.2.3-70-g09d2