Modified the license text comment type.
[emufront] / src / dataobjects / filepathobject.cpp
index 13d0a97..7dd08a8 100644 (file)
@@ -1,26 +1,29 @@
-// EmuFront
-// Copyright 2010 Mikko Keinänen
-//
-// This file is part of EmuFront.
-//
-//
-// EmuFront is free software: you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
-// the Free Software Foundation, either version 3 of the License, or
-// (at your option) any later version.
-//
-// EmuFront is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-// GNU General Public License for more details.
-//
-// You should have received a copy of the GNU General Public License
-// along with EmuFront.  If not, see <http://www.gnu.org/licenses/>.
-
+/*
+** EmuFront
+** Copyright 2010 Mikko Keinänen
+**
+** This file is part of EmuFront.
+**
+**
+** EmuFront is free software: you can redistribute it and/or modify
+** it under the terms of the GNU General Public License version 2 as published by
+** the Free Software Foundation and appearing in the file gpl.txt included in the
+** packaging of this file.
+**
+** EmuFront is distributed in the hope that it will be useful,
+** but WITHOUT ANY WARRANTY; without even the implied warranty of
+** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+** GNU General Public License for more details.
+**
+** You should have received a copy of the GNU General Public License
+** along with EmuFront.  If not, see <http://www.gnu.org/licenses/>.
+*/
+#include <QDebug>
 #include "filepathobject.h"
 #include "setup.h"
 
-FilePathObject::FilePathObject() : EmuFrontObject(), setup(0)
+FilePathObject::FilePathObject(int type)
+    : EmuFrontObject(), type(type), setup(0)
 { }
 
 FilePathObject::FilePathObject(int id, QString name, int filetype)
@@ -35,7 +38,7 @@ FilePathObject::~FilePathObject()
 }
 
 FilePathObject::FilePathObject(const FilePathObject &fpobj)
-    : EmuFrontObject(fpobj.id, fpobj.name), type(fpobj.type)
+    : EmuFrontObject(fpobj), type(fpobj.type)
 {
     Setup *s = fpobj.setup;
     setup = new Setup(*s);