~ubuntu-branches/ubuntu/wily/qgis/wily

« back to all changes in this revision

Viewing changes to src/gui/qgsludialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Johan Van de Wauw
  • Date: 2010-07-11 20:23:24 UTC
  • mfrom: (3.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100711202324-5ktghxa7hracohmr
Tags: 1.4.0+12730-3ubuntu1
* Merge from Debian unstable (LP: #540941).
* Fix compilation issues with QT 4.7
* Add build-depends on libqt4-webkit-dev 

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 *   (at your option) any later version.                                   *
15
15
 *                                                                         *
16
16
 ***************************************************************************/
17
 
/* $Id: qgsludialog.h 4688 2006-01-15 12:08:18Z telwertowski $ */
 
17
/* $Id$ */
18
18
 
19
19
#ifndef QGSLUDIALOG_H
20
20
#define QGSLUDIALOG_H
23
23
#include "qgisgui.h"
24
24
 
25
25
 
26
 
class QgsLUDialog: public QDialog, private Ui::QgsLUDialogBase
 
26
class GUI_EXPORT QgsLUDialog: public QDialog, private Ui::QgsLUDialogBase
27
27
{
28
28
    Q_OBJECT
29
 
 public:
30
 
    QgsLUDialog(QWidget *parent = 0, Qt::WFlags fl = QgisGui::ModalDialogFlags);
 
29
  public:
 
30
    QgsLUDialog( QWidget *parent = 0, Qt::WFlags fl = QgisGui::ModalDialogFlags );
31
31
    ~QgsLUDialog();
32
32
    QString lowerValue() const;
33
 
    void setLowerValue(QString val);
 
33
    void setLowerValue( QString val );
34
34
    QString upperValue() const;
35
 
    void setUpperValue(QString val);
 
35
    void setUpperValue( QString val );
36
36
};
37
37
 
38
38
#endif