Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 56262 | Differences between
and this patch

Collapse All | Expand All

(-)qgis-0.7.4/plugins/grid_maker/graticulecreator.h (-2 / +2 lines)
Lines 19-26 Link Here
19
                         double theXEndPointDouble,
19
                         double theXEndPointDouble,
20
                         double theYEndPointDouble);
20
                         double theYEndPointDouble);
21
        ~GraticuleCreator() {};
21
        ~GraticuleCreator() {};
22
        DBFHandle GraticuleCreator::createDbf (QString theDbfName ) ;
22
        DBFHandle createDbf (QString theDbfName ) ;
23
        SHPHandle GraticuleCreator::createShapeFile(QString theFileName ); 
23
        SHPHandle createShapeFile(QString theFileName ); 
24
        void writeDbfRecord (DBFHandle theDbfHandle, int theRecordIdInt, QString theLabel) ;
24
        void writeDbfRecord (DBFHandle theDbfHandle, int theRecordIdInt, QString theLabel) ;
25
        void writePoint(SHPHandle theShapeHandle, int theRecordInt, double theXDouble, double y ); 
25
        void writePoint(SHPHandle theShapeHandle, int theRecordInt, double theXDouble, double y ); 
26
        //! Writes a WGS 84 .prj file for the generated grid
26
        //! Writes a WGS 84 .prj file for the generated grid
(-)qgis-0.7.4/src/qgslabel.h (-1 / +1 lines)
Lines 91-97 Link Here
91
    void addRequiredFields ( std::list<int> *fields );
91
    void addRequiredFields ( std::list<int> *fields );
92
92
93
    //! Available vector fields
93
    //! Available vector fields
94
    std::vector<QgsField> & QgsLabel::fields ( void );
94
    std::vector<QgsField> & fields ( void );
95
95
96
    //! Pointer to default attributes
96
    //! Pointer to default attributes
97
    QgsLabelAttributes *layerAttributes ( void );
97
    QgsLabelAttributes *layerAttributes ( void );
(-)qgis-0.7.4/src/qgsproject.h (-2 / +2 lines)
Lines 95-103 Link Here
95
       write()
95
       write()
96
     */
96
     */
97
    //@{
97
    //@{
98
    bool QgsProject::dirty() const;
98
    bool dirty() const;
99
99
100
    void QgsProject::dirty( bool b );
100
    void dirty( bool b );
101
    //@}
101
    //@}
102
102
103
103
(-)qgis-0.7.4/src/qgsprojectproperties.h (-1 / +1 lines)
Lines 60-66 Link Here
60
  /*! Accessor for projection */
60
  /*! Accessor for projection */
61
  QString projectionWKT();
61
  QString projectionWKT();
62
  /*! Indicates that the projection switch is on */
62
  /*! Indicates that the projection switch is on */
63
  bool QgsProjectProperties::isProjected();
63
  bool isProjected();
64
public slots:
64
public slots:
65
  /*! 
65
  /*! 
66
   * Slot called when a new button (unit) is selected
66
   * Slot called when a new button (unit) is selected
(-)qgis-0.7.4/src/qgsrasterlayerproperties.h (-1 / +1 lines)
Lines 69-75 Link Here
69
        /** \brief slot executed when the three band radio button is pressed. */
69
        /** \brief slot executed when the three band radio button is pressed. */
70
        void rbtnThreeBand_toggled( bool );
70
        void rbtnThreeBand_toggled( bool );
71
        /** \brief slot executed when user wishes to refresh raster histogram */
71
        /** \brief slot executed when user wishes to refresh raster histogram */
72
        void QgsRasterLayerProperties::pbnHistRefresh_clicked();
72
        void pbnHistRefresh_clicked();
73
        /** Override the SRS specified when the layer was loaded */
73
        /** Override the SRS specified when the layer was loaded */
74
        void pbnChangeSpatialRefSys_clicked();
74
        void pbnChangeSpatialRefSys_clicked();
75
75

Return to bug 56262