File indexing completed on 2024-04-28 07:52:23

0001 /***************************************************************************
0002                           csaveablefield.cpp  -  alias/trigger baseclass
0003     This file is a part of KMuddy distribution.
0004                              -------------------
0005     begin                : So sep 7 2002
0006     copyright            : (C) 2002 by Tomas Mecir
0007     email                : kmuddy@kmuddy.com
0008  ***************************************************************************/
0009 
0010 /***************************************************************************
0011  *                                                                         *
0012  *   This program is free software; you can redistribute it and/or modify  *
0013  *   it under the terms of the GNU General Public License as published by  *
0014  *   the Free Software Foundation; either version 2 of the License, or     *
0015  *   (at your option) any later version.                                   *
0016  *                                                                         *
0017  ***************************************************************************/
0018 
0019 #include "csaveablefield.h"
0020 
0021 #include <kconfig.h>
0022 
0023 cSaveableField::cSaveableField ()
0024 {
0025   prev = nullptr;
0026   next = nullptr;
0027   globalmatch = false;
0028 }
0029 
0030 cSaveableField::~cSaveableField ()
0031 {
0032 }
0033 
0034 void cSaveableField::setCond (const QString &c)
0035 {
0036   condition = c;
0037 }
0038 
0039