~paulbrianstewart/ubuntu/oneiric/tellico/852247-Formatting-Fix

« back to all changes in this revision

Viewing changes to src/filterdialog.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Regis Boudin
  • Date: 2008-05-23 21:28:59 UTC
  • mfrom: (0.1.14 upstream) (2.1.1 etch)
  • Revision ID: james.westby@ubuntu.com-20080523212859-n0gl4ap37xb0uj1a
Tags: 1.3.2-1
* New upstream release.
* Recommend khelpcenter for acces to the help (Closes: #478975).

Show diffs side-by-side

added added

removed removed

Lines of Context:
229
229
  }
230
230
 
231
231
  // set the right number of widgets
232
 
  setNumberOfShownWidgetsTo(KMAX(count, mMinWidgets));
 
232
  setNumberOfShownWidgetsTo(QMAX(count, mMinWidgets));
233
233
 
234
234
  // load the actions into the widgets
235
235
  QPtrListIterator<QWidget> wIt(mWidgetList);
325
325
  enableButtonOK(false); // disable at start
326
326
  actionButton(Help)->setDefault(false); // Help automatically becomes default when OK is disabled
327
327
  actionButton(Cancel)->setDefault(true); // Help automatically becomes default when OK is disabled
328
 
  setMinimumWidth(KMAX(minimumWidth(), FILTER_MIN_WIDTH));
 
328
  setMinimumWidth(QMAX(minimumWidth(), FILTER_MIN_WIDTH));
329
329
  setHelp(QString::fromLatin1("filter-dialog"));
330
330
}
331
331