mirror of
https://invent.kde.org/network/falkon.git
synced 2024-12-20 10:46:35 +01:00
TestPlugin: Update comments
This commit is contained in:
parent
176b31198e
commit
044bc89326
@ -33,8 +33,7 @@ TestPlugin::TestPlugin()
|
|||||||
, m_view(0)
|
, m_view(0)
|
||||||
{
|
{
|
||||||
// Don't do anything expensive in constructor!
|
// Don't do anything expensive in constructor!
|
||||||
// It will be called even if user doesn't have
|
// It will be called even if user doesn't have the plugin allowed
|
||||||
// plugin allowed
|
|
||||||
}
|
}
|
||||||
|
|
||||||
PluginSpec TestPlugin::pluginSpec()
|
PluginSpec TestPlugin::pluginSpec()
|
||||||
@ -43,7 +42,7 @@ PluginSpec TestPlugin::pluginSpec()
|
|||||||
spec.name = "Example Plugin";
|
spec.name = "Example Plugin";
|
||||||
spec.info = "Example minimal plugin";
|
spec.info = "Example minimal plugin";
|
||||||
spec.description = "Very simple minimal plugin example";
|
spec.description = "Very simple minimal plugin example";
|
||||||
spec.version = "0.1.6";
|
spec.version = "0.1.7";
|
||||||
spec.author = "David Rosca <nowrep@gmail.com>";
|
spec.author = "David Rosca <nowrep@gmail.com>";
|
||||||
spec.icon = QPixmap(":qupzilla.png");
|
spec.icon = QPixmap(":qupzilla.png");
|
||||||
spec.hasSettings = true;
|
spec.hasSettings = true;
|
||||||
|
@ -18,14 +18,9 @@
|
|||||||
#ifndef TESTPLUGIN_H
|
#ifndef TESTPLUGIN_H
|
||||||
#define TESTPLUGIN_H
|
#define TESTPLUGIN_H
|
||||||
|
|
||||||
//Include actual plugininterface.h for your version of QupZilla
|
// Include plugininterface.h for your version of QupZilla
|
||||||
//This file is available to download at QupZilla website
|
|
||||||
|
|
||||||
#include "plugininterface.h"
|
#include "plugininterface.h"
|
||||||
|
|
||||||
//For clean plugin directory, please build necessary files into
|
|
||||||
//plugin in .qrc data files
|
|
||||||
|
|
||||||
#include <QLabel>
|
#include <QLabel>
|
||||||
#include <QMessageBox>
|
#include <QMessageBox>
|
||||||
#include <QVBoxLayout>
|
#include <QVBoxLayout>
|
||||||
|
Loading…
Reference in New Issue
Block a user