~ubuntu-branches/debian/squeeze/libffado/squeeze

« back to all changes in this revision

Viewing changes to src/ffadodevice.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Adrian Knoth
  • Date: 2009-03-12 17:36:53 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090312173653-bldzd1ft6dz1jwsf
Tags: 2.0~rc1+svn1539-1
* Initial Debian inclusion, based on Ubuntu (Closes: #501502)
* Bumped standards version
* Limit architecture to i386, amd64 and powerpc
* Add external sources to copyright file
* Make the source package depend on debhelper-7
* Remove Ubuntu's u from libname (libffado.so.0.0.0u)
* Provide generic man pages (redirecting the user to www.ffado.org for now)
* Fix lintian warnings about outdated FSF address and unversioned GPL
  reference

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
        if(!m_genericContainer->addElement(new Control::Nickname(*this))) {
74
74
            debugWarning("failed to add Nickname control to container\n");
75
75
        }
 
76
        // add a generic control for the streaming status
 
77
        if(!m_genericContainer->addElement(new Control::StreamingStatus(*this))) {
 
78
            debugWarning("failed to add StreamingStatus control to container\n");
 
79
        }
76
80
    }
77
81
}
78
82