~ubuntu-branches/ubuntu/quantal/psi/quantal

« back to all changes in this revision

Viewing changes to src/tools/trayicon/trayicon.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2009-09-25 17:49:51 UTC
  • mfrom: (6.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090925174951-lvm7kdap82o8xhn3
Tags: 0.13-1
* Updated to upstream version 0.13
* Set Standards-Version to 3.8.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
TrayIcon::TrayIcon( QObject *parent, const char *name )
40
40
: QObject(parent, name), pop(0), d(0)
41
41
{
42
 
        v_isWMDock = FALSE;
 
42
        v_isWMDock = false;
43
43
}
44
44
 
45
45
/**
52
52
TrayIcon::TrayIcon( const QPixmap &icon, const QString &tooltip, QMenu *popup, QObject *parent, const char *name )
53
53
: QObject(parent, name), pop(popup), pm(icon), tip(tooltip), d(0)
54
54
{
55
 
        v_isWMDock = FALSE;
 
55
        v_isWMDock = false;
56
56
 
57
57
        if ( !pm.width() || !pm.height() )
58
58
                pm = QPixmap( 16, 16 );
177
177
        return QObject::event( e );
178
178
    }
179
179
 
180
 
    return TRUE;
 
180
    return true;
181
181
}
182
182
 
183
183
/**