File indexing completed on 2024-04-28 16:13:26

0001 /*
0002     SPDX-FileCopyrightText: 2020 Ralf Habacker ralf.habacker @freenet.de
0003 
0004     This file is part of libalkimia.
0005 
0006     SPDX-License-Identifier: GPL-2.0-or-later
0007 */
0008 
0009 #ifndef ALKPUSHBUTTON_H
0010 #define ALKPUSHBUTTON_H
0011 
0012 #include <QtGlobal>
0013 
0014 #if QT_VERSION >= QT_VERSION_CHECK(5,0,0)
0015 #include <QPushButton>
0016 #define AlkPushButton QPushButton
0017 #else
0018 #include <KPushButton>
0019 #define AlkPushButton KPushButton
0020 #endif
0021 
0022 #endif