~ubuntu-branches/ubuntu/lucid/mythtv/lucid

« back to all changes in this revision

Viewing changes to libs/libmythui/mythgesture.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Mario Limonciello, Mario Limonciello, John Baab
  • Date: 2009-09-29 01:33:23 UTC
  • mfrom: (1.1.35 upstream)
  • Revision ID: james.westby@ubuntu.com-20090929013323-6pvn8encm757zbxw
Tags: 0.22.0~trunk22101-0ubuntu1
[ Mario Limonciello ]
* New upstream checkout (r22101)
* Try to guard and make sure that ~mythtv is read from /etc/passwd 
  rather than assuming it's /home/mythtv.

[ John Baab ]
* debian/mythtv-common.postinst:
  - Added symlink for /home/mythtv/.mythtv/config.xml

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 * the appropriate fixes.
28
28
 */
29
29
 
 
30
#include "mythgesture.h"
 
31
 
30
32
#include <cmath>
31
33
#include <algorithm>
32
34
 
33
35
#include <QMutex>
34
36
#include <QMap>
35
37
 
36
 
#include "mythgesture.h"
37
 
 
38
38
/**
39
39
 * @class MythGesturePrivate
40
40
 * @brief Private information used only by a stroke class.
258
258
    
259
259
    /* bail out on error cases */
260
260
    if (sequence_count > max_sequence) 
261
 
        sequence = "0";
 
261
        sequence = '0';
262
262
 
263
263
    return sequence;
264
264
}