Skip to content
Permalink
Browse files
Remove redundant class qualifiers on member declarations within class…
… definitions. It's not standard and gcc 4.1 is enforcing the rules.

git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@4990 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
telwertowski committed Mar 9, 2006
1 parent 166f8db commit ca17401
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
@@ -24,7 +24,7 @@ class QgsEncodingFileDialog: public QFileDialog
{
Q_OBJECT
public:
QgsEncodingFileDialog::QgsEncodingFileDialog(QWidget * parent = 0,
QgsEncodingFileDialog(QWidget * parent = 0,
const QString & caption = QString(), const QString & directory = QString(),
const QString & filter = QString(), const QString & encoding = QString());
~QgsEncodingFileDialog();
@@ -90,7 +90,7 @@ class QgsLabel
void addRequiredFields ( std::list<int> *fields );

//! Available vector fields
std::vector<QgsField> & QgsLabel::fields ( void );
std::vector<QgsField> & fields ( void );

//! Pointer to default attributes
QgsLabelAttributes *layerAttributes ( void );
@@ -68,8 +68,8 @@ class QgsPasteTransformations : public QDialog, private Ui::QgsPasteTransformati
//! Common subfunction to sourceChanged() and destinationChanged()
void layerChanged(const QString& layerName, std::vector<QString>* fields);

void QgsPasteTransformations::restoreTransfers(const QString& sourceSelectedFieldName,
const QString& destinationSelectedFieldName);
void restoreTransfers(const QString& sourceSelectedFieldName,
const QString& destinationSelectedFieldName);


std::map<QString, QgsMapLayer*> mMapNameLookup;
@@ -91,9 +91,9 @@ class QgsProject
write()
*/
//@{
bool QgsProject::dirty() const;
bool dirty() const;

void QgsProject::dirty( bool b );
void dirty( bool b );
//@}


@@ -32,7 +32,7 @@ class QgsDlgPgBuffer:public QDialog, private Ui::QgsDlgPgBufferBase
//! Constructor
QgsDlgPgBuffer( QgisIface * _qI = 0, QWidget * parent = 0, Qt::WFlags fl = QgisGui::ModalDialogFlags);
//! Destructor
QgsDlgPgBuffer::~QgsDlgPgBuffer();
~QgsDlgPgBuffer();
//! Set the information label in the dialog
void setBufferLabel(QString & lbl);
//! Get the buffer distance
@@ -40,8 +40,8 @@ class GraticuleCreator
private:
DBFHandle mDbfHandle;
SHPHandle mShapeHandle;
void GraticuleCreator::createDbf (QString theDbfName ) ;
void GraticuleCreator::createShapeFile(QString theFileNamei, ShapeType theType );
void createDbf (QString theDbfName ) ;
void createShapeFile(QString theFileNamei, ShapeType theType );
void writeDbfRecord ( int theRecordIdInt, QString theLabel) ;
void writePoint(int theRecordInt, double theXDouble, double y );
//! Writes a WGS 84 .prj file for the generated grid
@@ -147,7 +147,7 @@ class QgsGPXProvider : public QgsVectorDataProvider {
const std::map<QString, QString>& attrs);

/** Adds one feature (used by addFeatures()) */
bool QgsGPXProvider::addFeature(QgsFeature* f);
bool addFeature(QgsFeature* f);

/**Returns the default value for attribute @c attr for feature @c f. */
QString getDefaultValue(const QString& attr, QgsFeature* f);

0 comments on commit ca17401

Please sign in to comment.