File: k3bprojectplugin.cpp

package info (click to toggle)
k3b 25.12.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 55,820 kB
  • sloc: cpp: 99,202; xml: 375; sh: 84; makefile: 10
file content (23 lines) | stat: -rw-r--r-- 532 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
    SPDX-FileCopyrightText: 2004-2009 Sebastian Trueg <trueg@k3b.org>
    SPDX-FileCopyrightText: 1998-2009 Sebastian Trueg <trueg@k3b.org>

    SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "k3bprojectplugin.h"
#include "k3b_i18n.h"

K3b::ProjectPlugin::ProjectPlugin( Type type, bool gui, QObject* parent )
  : K3b::Plugin( parent ),
    m_type(type),
    m_hasGUI(gui)
{
}


QString K3b::ProjectPlugin::categoryName() const
{
    return i18nc( "plugin type", "Project plugin" );
}

#include "moc_k3bprojectplugin.cpp"