]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/qt-console/mediaedit/mediaedit.cpp
Backport from BEE
[bacula/bacula] / bacula / src / qt-console / mediaedit / mediaedit.cpp
index 3e3b6d03bc0a85cd73051f979e7e2264e5182ae2..12b1cfa1b7c9f9b5f5bd2a0884b7042814be6a66 100644 (file)
@@ -3,34 +3,22 @@
 
    Copyright (C) 2007-2009 Free Software Foundation Europe e.V.
 
-   The main author of Bacula is Kern Sibbald, with contributions from
-   many others, a complete list can be found in the file AUTHORS.
-   This program is Free Software; you can redistribute it and/or
-   modify it under the terms of version three of the GNU Affero General Public
-   License as published by the Free Software Foundation and included
-   in the file LICENSE.
+   The main author of Bacula is Kern Sibbald, with contributions from many
+   others, a complete list can be found in the file AUTHORS.
 
-   This program 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 Affero General Public License
-   along with this program; if not, write to the Free Software
-   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
-   02110-1301, USA.
+   You may use this file and others of this release according to the
+   license defined in the LICENSE file, which includes the Affero General
+   Public License, v3.0 ("AGPLv3") and some additional permissions and
+   terms pursuant to its AGPLv3 Section 7.
 
    Bacula® is a registered trademark of Kern Sibbald.
-   The licensor of Bacula is the Free Software Foundation Europe
-   (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
-   Switzerland, email:ftf@fsfeurope.org.
 */
 /*
  *   Version $Id$
  *
  *   Dirk Bartley, March 2007
  */
+
 #include "bat.h"
 #include <QAbstractEventDispatcher>
 #include <QTableWidgetItem>
@@ -38,9 +26,9 @@
 #include "mediaedit.h"
 
 /*
- * A constructor 
+ * A constructor
  */
-MediaEdit::MediaEdit(QTreeWidgetItem *parentWidget, QString &mediaId) 
+MediaEdit::MediaEdit(QTreeWidgetItem *parentWidget, QString &mediaId)
   : Pages()
 {
    setupUi(this);
@@ -67,7 +55,7 @@ MediaEdit::MediaEdit(QTreeWidgetItem *parentWidget, QString &mediaId)
    poolCombo->addItems(m_console->pool_list);
 
    /* The media's Status */
-   QStringList statusList = (QStringList() << "Full" << "Used" << "Append" 
+   QStringList statusList = (QStringList() << "Full" << "Used" << "Append"
        << "Error" << "Purged" << "Recycle" << "Read-Only" << "Cleaning");
    statusCombo->addItems(statusList);
 
@@ -302,7 +290,7 @@ void MediaEdit::useDurationChanged()
 void MediaEdit::setSpins(int value)
 {
    int years, months, days, hours, minutes, seconds, left;
-        
+
    years = abs(value / 31536000);
    left = value - years * 31536000;
    months = abs(left / 2592000);
@@ -376,7 +364,7 @@ void MediaEdit::durationChanged()
    connectSpins();
    if (retentionRadio->isChecked()) {
       int retention;
-      retention = secondsSpin->value() + minutesSpin->value() * 60 + 
+      retention = secondsSpin->value() + minutesSpin->value() * 60 +
          hoursSpin->value() * 3600 + daysSpin->value() * 86400 +
          monthsSpin->value() * 2592000 +
          yearsSpin->value() * 31536000;
@@ -386,7 +374,7 @@ void MediaEdit::durationChanged()
    }
    if (useDurationRadio->isChecked()) {
       int useDuration;
-      useDuration = secondsSpin->value() + minutesSpin->value() * 60 + 
+      useDuration = secondsSpin->value() + minutesSpin->value() * 60 +
          hoursSpin->value() * 3600 + daysSpin->value() * 86400 +
          monthsSpin->value() * 2592000 +
          yearsSpin->value() * 31536000;