]> git.sur5r.net Git - bacula/bacula/commitdiff
Tweak copyrights
authorKern Sibbald <kern@sibbald.com>
Wed, 17 Feb 2010 15:39:36 +0000 (16:39 +0100)
committerKern Sibbald <kern@sibbald.com>
Wed, 17 Feb 2010 15:40:03 +0000 (16:40 +0100)
bacula/src/qt-console/medialist/medialist.cpp
bacula/src/qt-console/medialist/medialist.h
bacula/src/qt-console/medialist/mediaview.cpp
bacula/src/qt-console/medialist/mediaview.ui
bacula/src/qt-console/util/fmtwidgetitem.cpp
bacula/src/qt-console/util/fmtwidgetitem.h

index 2def8025e9fc1ab9bef373cdb5fccfecbf33de36..8ae65738338aab59e8e4214d8a8395a8ccf50251 100644 (file)
@@ -1,7 +1,7 @@
 /*
    Bacula® - The Network Backup Solution
 
-   Copyright (C) 2007-2009 Free Software Foundation Europe e.V.
+   Copyright (C) 2007-2010 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.
@@ -27,8 +27,6 @@
 */
  
 /*
- *   Version $Id$
- *
  *  MediaList Class
  *
  *   Dirk Bartley, March 2007
index 63c2a19f3f70d161082a62d0173503a6606b481d..fd2134256c6f21c7ef3d1c5e485180ecb1773296 100644 (file)
@@ -3,7 +3,7 @@
 /*
    Bacula® - The Network Backup Solution
 
-   Copyright (C) 2007-2007 Free Software Foundation Europe e.V.
+   Copyright (C) 2007-2010 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.
@@ -28,8 +28,6 @@
    Switzerland, email:ftf@fsfeurope.org.
 */
 /*
- *   Version $Id$
- *
  *   Dirk Bartley, March 2007
  */
 
index 2c8653831dc757aabc47547e8a0997b082fe9b23..edcc55a1cf6e86ce9ea3b46696fe2fce1fb38578 100644 (file)
@@ -1,7 +1,7 @@
 /*
    Bacula® - The Network Backup Solution
 
-   Copyright (C) 2007-2009 Free Software Foundation Europe e.V.
+   Copyright (C) 2007-2010 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.
@@ -317,13 +317,13 @@ void MediaView::populateTable()
       m_tableMedia->setRowCount(results.size());
 
       foreach (resultline, results) { // should have only one result
+         int index = 0;
          QString VolBytes, MediaType, LastWritten, VolStatus;
          fieldlist = resultline.split("\t");
          if (fieldlist.size() != 10) {
             continue;
          }
          QStringListIterator fld(fieldlist);
-         int index=0;
          TableItemFormatter mediaitem(*m_tableMedia, row);
 
          /* VolumeName */
@@ -343,8 +343,7 @@ void MediaView::populateTable()
          /* Usage */
          usage = 0;
          if (hash_size.contains(MediaType) &&
-             hash_size[MediaType] != 0) 
-         {
+             hash_size[MediaType] != 0) {
             usage = VolBytes.toLongLong() * 100 / hash_size[MediaType];
          }
          mediaitem.setPercent(index++, usage);
index a86a8ce5349bee08609ecfa06ea8922a07317445..cd73c531ef880a6879b54dd079168531371818c7 100644 (file)
      </property>
      <column>
       <property name="text" >
-       <string>Volume Name</string>
+       <string> Volume Name </string>
       </property>
      </column>
      <column>
index 2c36e3692903be5b8161b028aaf806233278bc81..9f7bf412af9b3d7867684f16acec0351ffa34396 100644 (file)
@@ -1,7 +1,7 @@
 /*
    Bacula® - The Network Backup Solution
 
-   Copyright (C) 2007-2007 Free Software Foundation Europe e.V.
+   Copyright (C) 2007-2010 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.
@@ -27,7 +27,6 @@
 */
  
 /*
- *   Version $Id$
  *
  *  Helper functions for tree widget formatting
  *
@@ -309,11 +308,11 @@ void ItemFormatterBase::setDurationFld(int index, const QString &fld)
    char suffix = 's';
    if (dfld) {
       for (int pos = 0 ; sufs[pos] ; ++pos) {
-         if (dfld % divs[pos] == 0) {
-            dfld /= divs[pos];
-            suffix = sufs[pos];
-            break;
-         }
+          if (dfld % divs[pos] == 0) {
+             dfld /= divs[pos];
+             suffix = sufs[pos];
+             break;
+          }
       }
    }
    QString msg;
@@ -325,13 +324,13 @@ void ItemFormatterBase::setDurationFld(int index, const QString &fld)
       dfld = fld.trimmed().toLongLong();
       msg = "";
       for (int pos = 0 ; sufs[pos] ; ++pos) {
-         if (dfld / divs[pos] != 0) {
-            msg += QString(" %1%2").arg(dfld / divs[pos]).arg(sufs[pos]);
-            dfld %= divs[pos];
-         }
+          if (dfld / divs[pos] != 0) {
+             msg += QString(" %1%2").arg(dfld / divs[pos]).arg(sufs[pos]);
+             dfld %= divs[pos];
+          }
       }
       if (dfld)
-        msg += QString(" %1s").arg(dfld);
+         msg += QString(" %1s").arg(dfld);
    }
 
    setNumericFld(index, msg, fld.trimmed().toLongLong());
@@ -536,4 +535,3 @@ const QTableWidgetItem *TableItemFormatter::widget(int col) const
 {
    return parent->item(row, col);
 }
-
index 976d1bb58b9a8fa0ae4bd7475993c7a0cf8084d3..fe645d055c784eddbe85e92aee48b6d966000229 100644 (file)
@@ -3,7 +3,7 @@
 /*
    Bacula® - The Network Backup Solution
 
-   Copyright (C) 2007-2007 Free Software Foundation Europe e.V.
+   Copyright (C) 2007-2010 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.
@@ -28,8 +28,6 @@
    Switzerland, email:ftf@fsfeurope.org.
 */
 /*
- *   Version $Id$
- *
  *   TreeView formatting helpers - Riccardo Ghetta, May 2008 
  */