summaryrefslogtreecommitdiff
path: root/noncore/settings/packagemanager/opackage.cpp
Unidiff
Diffstat (limited to 'noncore/settings/packagemanager/opackage.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/packagemanager/opackage.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/noncore/settings/packagemanager/opackage.cpp b/noncore/settings/packagemanager/opackage.cpp
index 34717e3..37963fa 100644
--- a/noncore/settings/packagemanager/opackage.cpp
+++ b/noncore/settings/packagemanager/opackage.cpp
@@ -23,21 +23,24 @@
23 -.   .:....=;==+<; You should have received a copy of the GNU 23 -.   .:....=;==+<; You should have received a copy of the GNU
24  -_. . .   )=.  = Library General Public License along with 24  -_. . .   )=.  = Library General Public License along with
25    --        :-=` this library; see the file COPYING.LIB. 25    --        :-=` this library; see the file COPYING.LIB.
26 If not, write to the Free Software Foundation, 26 If not, write to the Free Software Foundation,
27 Inc., 59 Temple Place - Suite 330, 27 Inc., 59 Temple Place - Suite 330,
28 Boston, MA 02111-1307, USA. 28 Boston, MA 02111-1307, USA.
29 29
30*/ 30*/
31 31
32#include "opackage.h" 32#include "opackage.h"
33 33
34OPackage::OPackage( const QString &name, const QString &version, const QString &versionInstalled, 34OPackage::OPackage( const QString &name, const QString &version, const QString &versionInstalled,
35 const QString &source, const QString &destination, const QString &category ) 35 const QString &source, const QString &destination, const QString &category,
36 const QString &information, const QString &files )
36 : m_name( name ) 37 : m_name( name )
37 , m_version( version ) 38 , m_version( version )
38 , m_versionInstalled( versionInstalled ) 39 , m_versionInstalled( versionInstalled )
39 , m_source( source ) 40 , m_source( source )
40 , m_destination( destination ) 41 , m_destination( destination )
41 , m_category( category ) 42 , m_category( category )
43 , m_information( information )
44 , m_files( files )
42{ 45{
43} 46}