~ubuntu-branches/ubuntu/utopic/kde4libs/utopic

« back to all changes in this revision

Viewing changes to kdeui/widgets/kpixmapregionselectorwidget.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Kolberg
  • Date: 2012-03-03 00:25:28 UTC
  • mfrom: (1.14.15)
  • Revision ID: package-import@ubuntu.com-20120303002528-chhwyfluldkicy5k
Tags: 4:4.8.1-0ubuntu1
* New upstream release
  - Update symbol files

Show diffs side-by-side

added added

removed removed

Lines of Context:
197
197
    QAction *action = actions->addAction("rotateclockwise");
198
198
    action->setText(i18n("&Rotate Clockwise"));
199
199
    action->setIcon( KIcon( "object-rotate-right" ) );
200
 
    connect( action, SIGNAL( triggered( bool ) ), this, SLOT(rotateClockwise()) );
 
200
    connect( action, SIGNAL(triggered(bool)), this, SLOT(rotateClockwise()) );
201
201
 
202
202
    popup->addAction(action);
203
203
 
204
204
    action = actions->addAction("rotatecounterclockwise");
205
205
    action->setText(i18n("Rotate &Counterclockwise"));
206
206
    action->setIcon( KIcon( "object-rotate-left" ) );
207
 
    connect( action, SIGNAL( triggered( bool ) ), this, SLOT(rotateCounterclockwise()) );
 
207
    connect( action, SIGNAL(triggered(bool)), this, SLOT(rotateCounterclockwise()) );
208
208
 
209
209
    popup->addAction(action);
210
210