~ubuntu-branches/debian/jessie/smplayer/jessie

« back to all changes in this revision

Viewing changes to src/findsubtitles/quazip/quazipnewinfo.cpp

  • Committer: Package Import Robot
  • Author(s): Alessio Treglia
  • Date: 2013-10-08 12:51:23 UTC
  • mfrom: (1.3.1) (21.1.2 experimental)
  • Revision ID: package-import@ubuntu.com-20131008125123-b3n39yi2i7dxvq5p
Tags: 0.8.6-1
* Team upload.
* Upload to unstable.
* New upstream release.
* Refresh patches.
* Fix VCS urls to meet the canonical form.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -- A kind of "standard" GPL license statement --
2
 
QuaZIP - a Qt/C++ wrapper for the ZIP/UNZIP package
3
 
Copyright (C) 2005-2007 Sergey A. Tachenov
4
 
 
5
 
This program is free software; you can redistribute it and/or modify it
6
 
under the terms of the GNU General Public License as published by the
7
 
Free Software Foundation; either version 2 of the License, or (at your
8
 
option) any later version.
9
 
 
10
 
This program is distributed in the hope that it will be useful, but
11
 
WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
13
 
Public License for more details.
14
 
 
15
 
You should have received a copy of the GNU General Public License along
16
 
with this program; if not, write to the Free Software Foundation, Inc.,
17
 
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18
 
 
19
 
 
20
 
See COPYING file for GPL.
21
 
 
22
 
You are also permitted to use QuaZIP under the terms of LGPL (see
23
 
COPYING.LGPL). You are free to choose either license, but please note
24
 
that QuaZIP makes use of Qt, which is not licensed under LGPL. So if
25
 
you are using Open Source edition of Qt, you therefore MUST use GPL for
26
 
your code based on QuaZIP, since it would be also based on Qt in this
27
 
case. If you are Qt commercial license owner, then you are free to use
28
 
QuaZIP as long as you respect either GPL or LGPL for QuaZIP code.
29
 
*/
30
 
 
31
 
#include <QFileInfo>
32
 
 
33
 
#include "quazipnewinfo.h"
34
 
 
35
 
 
36
 
QuaZipNewInfo::QuaZipNewInfo(const QString& name):
37
 
  name(name), dateTime(QDateTime::currentDateTime()), internalAttr(0), externalAttr(0)
38
 
{
39
 
}
40
 
 
41
 
QuaZipNewInfo::QuaZipNewInfo(const QString& name, const QString& file):
42
 
  name(name), internalAttr(0), externalAttr(0)
43
 
{
44
 
  QFileInfo info(file);
45
 
  QDateTime lm = info.lastModified();
46
 
  if (!info.exists())
47
 
    dateTime = QDateTime::currentDateTime();
48
 
  else
49
 
    dateTime = lm;
50
 
}
51
 
 
52
 
void QuaZipNewInfo::setFileDateTime(const QString& file)
53
 
{
54
 
  QFileInfo info(file);
55
 
  QDateTime lm = info.lastModified();
56
 
  if (info.exists())
57
 
    dateTime = lm;
58
 
}