reformat in uvosstyle

This commit is contained in:
2023-11-02 21:40:24 +01:00
parent c73f72f8c2
commit fc0ca71b4d
4 changed files with 225 additions and 225 deletions

View File

@ -8,26 +8,26 @@
class KateAiConfigPage : public KTextEditor::ConfigPage
{
Q_OBJECT
Q_OBJECT
private:
QLineEdit lineUrl;
QRadioButton btnCompletion;
QRadioButton btnInstruct;
KateAiPlugin* m_plugin;
QLineEdit lineUrl;
QRadioButton btnCompletion;
QRadioButton btnInstruct;
KateAiPlugin* m_plugin;
public:
explicit KateAiConfigPage(QWidget *parent = nullptr, KateAiPlugin *plugin = nullptr);
~KateAiConfigPage() override
{
}
explicit KateAiConfigPage(QWidget *parent = nullptr, KateAiPlugin *plugin = nullptr);
~KateAiConfigPage() override
{
}
QString name() const override;
QString fullName() const override;
QIcon icon() const override;
QString name() const override;
QString fullName() const override;
QIcon icon() const override;
void apply() override;
void reset() override;
void defaults() override
{
}
void apply() override;
void reset() override;
void defaults() override
{
}
};