~ubuntu-branches/ubuntu/hardy/lmms/hardy

« back to all changes in this revision

Viewing changes to include/midi_oss.h

  • Committer: Bazaar Package Importer
  • Author(s): Tobias Doerffel
  • Date: 2007-09-17 15:00:24 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070917150024-mo0zk4ks81jawqii
Tags: 0.3.0-1ubuntu1
* Resynchronized with Debian (LP: #139759, LP: #90806, LP: #102639,
  LP: #113447, LP: #121172, LP: #124890)
* reverted changes from 0.2.1-1.1ubuntu1 as upstream merged/included them

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 * midi_oss.h - OSS-raw-midi-client
3
3
 *
4
 
 * Copyright (c) 2005-2006 Tobias Doerffel <tobydox/at/users.sourceforge.net>
 
4
 * Copyright (c) 2005-2007 Tobias Doerffel <tobydox/at/users.sourceforge.net>
5
5
 * 
6
6
 * This file is part of Linux MultiMedia Studio - http://lmms.sourceforge.net
7
7
 *
17
17
 *
18
18
 * You should have received a copy of the GNU General Public
19
19
 * License along with this program (see COPYING); if not, write to the
20
 
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21
 
 * Boston, MA 02111-1307, USA.
 
20
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
21
 * Boston, MA 02110-1301 USA.
22
22
 *
23
23
 */
24
24
 
43
43
class midiOSS : public midiClientRaw, public QThread
44
44
{
45
45
public:
46
 
        midiOSS( engine * _engine );
 
46
        midiOSS( void );
47
47
        virtual ~midiOSS();
48
48
 
49
49
        static QString probeDevice( void );
51
51
 
52
52
        inline static QString name( void )
53
53
        {
54
 
                return( setupWidget::tr( "OSS Raw-MIDI (Open Sound System)" ) );
 
54
                return( QT_TRANSLATE_NOOP( "setupWidget",
 
55
                        "OSS Raw-MIDI (Open Sound System)" ) );
55
56
        }
56
57
 
57
58