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

« back to all changes in this revision

Viewing changes to libs/libmythui/mythdialogbox.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:
1
1
 
 
2
#include "mythdialogbox.h"
 
3
 
2
4
#include <QApplication>
3
5
#include <QFileInfo>
4
6
#include <QImageReader>
8
10
 
9
11
#include "mythverbose.h"
10
12
 
11
 
#include "mythdialogbox.h"
12
13
#include "mythmainwindow.h"
13
14
#include "mythfontproperties.h"
14
15
#include "mythuiutils.h"
66
67
 
67
68
    if (err)
68
69
    {
69
 
        VERBOSE(VB_IMPORTANT, "Cannot load screen '" + windowName + "'");
 
70
        VERBOSE(VB_IMPORTANT, QString("Cannot load screen '%1'")
 
71
                                        .arg(windowName));
70
72
        return false;
71
73
    }
72
74