~ubuntu-branches/ubuntu/natty/pyside/natty

« back to all changes in this revision

Viewing changes to doc/codesnippets/doc/src/snippets/whatsthis/whatsthis.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Didier Raboud
  • Date: 2011-02-18 18:01:00 UTC
  • mfrom: (1.1.6 upstream)
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: james.westby@ubuntu.com-20110218180100-y8aqmcdbcbd6gpeh
Tags: upstream-1.0.0~rc1
ImportĀ upstreamĀ versionĀ 1.0.0~rc1

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
//! [0]
43
43
    Act = QAction(tr("&New"), self)
44
44
    Act.setShortcut(tr("Ctrl+N"))
45
 
    Act.setStatusTip(tr("Create a new file"))
46
 
    Act.setWhatsThis(tr("Click self option to create a new file."))
 
45
    Act.setStatusTip(QObject.tr("Create a new file"))
 
46
    Act.setWhatsThis(QObject.tr("Click self option to create a new file."))
47
47
//! [0]
48
48