~ubuntu-branches/ubuntu/trusty/kdepimlibs/trusty

« back to all changes in this revision

Viewing changes to kcalutils/recurrenceactions.cpp

  • Committer: Package Import Robot
  • Author(s): Rohan Garg, Rohan Garg, Philip Muškovac
  • Date: 2013-11-23 17:36:44 UTC
  • mfrom: (1.1.102)
  • Revision ID: package-import@ubuntu.com-20131123173644-p5ow94192ezsny8g
Tags: 4:4.11.80-0ubuntu1
[ Rohan Garg ]
* New upstream beta release
  - Bump akonadi requirement to 1.10.45
  - Update install files
  - Update symbols

[ Philip Muškovac ]
* kdepimlibs-dev/-dbg breaks/replaces kdepim-runtime/-dbg (<< 4:4.11.80)

Show diffs side-by-side

added added

removed removed

Lines of Context:
177
177
  KDialog *dialog = new KDialog( parent );
178
178
  dialog->setCaption( caption );
179
179
  dialog->setButtons( KDialog::Yes | KDialog::Ok | KDialog::Cancel );
180
 
  dialog->setObjectName( "RecurrenceActions::questionSelectedAllCancel" );
 
180
  dialog->setObjectName( QLatin1String("RecurrenceActions::questionSelectedAllCancel") );
181
181
  dialog->setDefaultButton( KDialog::Yes );
182
182
  dialog->setButtonGuiItem( KDialog::Yes, actionSelected );
183
183
  dialog->setButtonGuiItem( KDialog::Ok, actionAll );
215
215
  KDialog *dialog = new KDialog( parent );
216
216
  dialog->setCaption( caption );
217
217
  dialog->setButtons( KDialog::Yes | KDialog::No | KDialog::Ok | KDialog::Cancel );
218
 
  dialog->setObjectName( "RecurrenceActions::questionSelectedFutureAllCancel" );
 
218
  dialog->setObjectName( QLatin1String("RecurrenceActions::questionSelectedFutureAllCancel") );
219
219
  dialog->setDefaultButton( KDialog::Yes );
220
220
  dialog->setButtonGuiItem( KDialog::Yes, actionSelected );
221
221
  dialog->setButtonGuiItem( KDialog::No, actionFuture );