~ubuntu-branches/debian/sid/stellarium/sid

« back to all changes in this revision

Viewing changes to src/core/StelVideoMgr.cpp

  • Committer: Package Import Robot
  • Author(s): Tomasz Buchert
  • Date: 2013-08-04 15:06:55 UTC
  • mfrom: (1.2.12)
  • Revision ID: package-import@ubuntu.com-20130804150655-iji0vb5navh3lk13
Tags: 0.12.2-1
* Imported Upstream version 0.12.2
* Added dependency to phonon (to enable video/sound)
* Fixed VCS links
* Removed unused lintian tag (embedded-library glee)
* Dropped obsolete patch
* Update copyright

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
#include "StelVideoMgr.hpp"
20
20
#include "StelMainGraphicsView.hpp"
21
21
#include <QDebug>
 
22
#include <QDir>
22
23
 
23
24
 
24
25
StelVideoMgr::StelVideoMgr()
180
181
#else  // HAVE_QT_PHONON
181
182
void StelVideoMgr::loadVideo(const QString& filename, const QString& id, float x, float y, bool show, float alpha)
182
183
{
183
 
        qWarning() << "[StelVideoMgr] This build of Stellarium does not support video - cannot load video" << filename << id << x << y << show << alpha;
 
184
        qWarning() << "[StelVideoMgr] This build of Stellarium does not support video - cannot load video" << QDir::toNativeSeparators(filename) << id << x << y << show << alpha;
184
185
}
185
186
StelVideoMgr::~StelVideoMgr() {;}
186
187
void StelVideoMgr::playVideo(const QString&) {;}