~ubuntu-branches/ubuntu/precise/mm3d/precise

« back to all changes in this revision

Viewing changes to src/commands/pastecmd.cc

  • Committer: Bazaar Package Importer
  • Author(s): Ludovico Gardenghi
  • Date: 2008-10-21 01:00:14 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20081021010014-65o1syy7ry430sn0
Tags: 1.3.7-1.1
* Non-maintainer upload.
* Fix FTBFS bug due to wrong Build-Depends -- still QT3 but new upstream
  moved to QT4. Removed useless dependencies on various X libraries.
  (Closes: #490331, #489838)

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
 
35
35
#include <list>
36
36
#include <map>
37
 
#include <qobject.h>
38
 
#include <qapplication.h>
 
37
#include <QtCore/QObject>
 
38
#include <QtGui/QApplication>
39
39
 
40
40
using std::list;
41
41
using std::map;
64
64
 
65
65
      model->mergeModels( m, true, Model::AM_NONE, false );
66
66
 
67
 
      model_status( model, StatusNormal, STATUSTIME_SHORT, qApp->translate( "Command", "Paste complete" ).utf8() );
 
67
      model_status( model, StatusNormal, STATUSTIME_SHORT, qApp->translate( "Command", "Paste complete" ).toUtf8() );
68
68
 
69
69
      return true;
70
70
   }