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

« back to all changes in this revision

Viewing changes to src/core/StelAudioMgr.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:
18
18
 
19
19
#include "StelAudioMgr.hpp"
20
20
#include <QDebug>
 
21
#include <QDir>
21
22
 
22
23
StelAudioMgr::StelAudioMgr()
23
24
{
87
88
#else  // HAVE_QT_PHONON
88
89
void StelAudioMgr::loadSound(const QString& filename, const QString& id)
89
90
{
90
 
        qWarning() << "This build of Stellarium does not support sound - cannot load audio" << filename << id;
 
91
        qWarning() << "This build of Stellarium does not support sound - cannot load audio" << QDir::toNativeSeparators(filename) << id;
91
92
}
92
93
StelAudioMgr::~StelAudioMgr() {;}
93
94
void StelAudioMgr::playSound(const QString&) {;}