feat: add missing KF6 framework recipes
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
/*
|
||||
SPDX-FileCopyrightText: 2005-2006 Olivier Goffart <ogoffart at kde.org>
|
||||
*/
|
||||
|
||||
#include <KLocalizedString>
|
||||
#include <QApplication>
|
||||
|
||||
#include "knotifytestwindow.h"
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
QApplication a(argc, argv);
|
||||
QApplication::setApplicationName("knotifytest");
|
||||
QApplication::setApplicationDisplayName(i18n("KNotifyTest"));
|
||||
|
||||
KNotifyTestWindow *knotifytestwindow = new KNotifyTestWindow;
|
||||
knotifytestwindow->show();
|
||||
|
||||
return a.exec();
|
||||
}
|
||||
Reference in New Issue
Block a user