From 726861a6ab21b853f48523eac149bfd3e855c4e9 Mon Sep 17 00:00:00 2001 From: Geoff Hutchison Date: Thu, 31 Oct 2024 18:23:08 -0400 Subject: [PATCH] Fix compile error with missing include Signed-off-by: Geoff Hutchison --- avogadro/qtgui/richtextdelegate.cpp | 15 +++------------ avogadro/qtgui/richtextdelegate.h | 13 +------------ 2 files changed, 4 insertions(+), 24 deletions(-) diff --git a/avogadro/qtgui/richtextdelegate.cpp b/avogadro/qtgui/richtextdelegate.cpp index 430e3d985..8efcbdab7 100644 --- a/avogadro/qtgui/richtextdelegate.cpp +++ b/avogadro/qtgui/richtextdelegate.cpp @@ -1,21 +1,12 @@ /****************************************************************************** - This source file is part of the Avogadro project. - - Copyright 2015 Marcus Johansson - - This source code is released under the New BSD License, (the "License"). - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - + This source code is released under the 3-Clause BSD License, (see "LICENSE"). ******************************************************************************/ #include "richtextdelegate.h" +#include + namespace Avogadro::QtGui { // See for example diff --git a/avogadro/qtgui/richtextdelegate.h b/avogadro/qtgui/richtextdelegate.h index 909f4f5ce..3a6bdccfa 100644 --- a/avogadro/qtgui/richtextdelegate.h +++ b/avogadro/qtgui/richtextdelegate.h @@ -1,17 +1,6 @@ /****************************************************************************** - This source file is part of the Avogadro project. - - Copyright 2015 Marcus Johansson - - This source code is released under the New BSD License, (the "License"). - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - + This source code is released under the 3-Clause BSD License, (see "LICENSE"). ******************************************************************************/ #ifndef AVOGADRO_QTPLUGINS_RICHTEXTDELEGATE_H