~ubuntu-branches/ubuntu/trusty/krusader/trusty

« back to all changes in this revision

Viewing changes to krusader/Konfigurator/konfiguratorpage.h

  • Committer: Bazaar Package Importer
  • Author(s): Michał Zając
  • Date: 2011-08-08 13:47:36 UTC
  • mfrom: (1.2.19 upstream)
  • Revision ID: james.westby@ubuntu.com-20110808134736-8e630ivgd2c3sgg5
Tags: 1:2.4.0~beta1-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
232
232
      * <br>The font chooser widget's name is QString(cls + "/" + name).ascii()<br>
233
233
      *
234
234
      * Sample:<br><br>
235
 
      * KonfiguratorFontChooser *myFontChooser = createFontChooser( "class", "name", new QFont(), parentWidget );<br>
 
235
      * KonfiguratorFontChooser *myFontChooser = createFontChooser( "class", "name", QFont(), parentWidget );<br>
236
236
      * myLayout->addWidget( myFontChooser, 0, 0 );
237
237
      *
238
238
      * @param  cls         The class name used in KConfig (ex. "Archives")
244
244
      *
245
245
      * @return             reference to the newly created font chooser
246
246
      */
247
 
    KonfiguratorFontChooser *createFontChooser(QString cls, QString name, QFont *dflt,
 
247
    KonfiguratorFontChooser *createFontChooser(QString cls, QString name, QFont dflt,
248
248
            QWidget *parent = 0, bool rst = false, int pg = FIRST_PAGE);
249
249
 
250
250
    /**