Your message dated Thu, 07 Sep 2006 07:17:07 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#356215: fixed in qgis 0.7.4-5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: qgis
Version: 0.7.4-3
Severity: important
Tags: patch

Attaching patch from Silke Reimer

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (650, 'unstable'), (600, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-1-k7
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_US.UTF-8)

Versions of packages qgis depends on:
ii  libc6                         2.3.5-13   GNU C Library: Shared libraries an
ii  libgcc1                       1:4.0.2-9  GCC support library
ii  libgdal1-1.3.1                1.3.1-4    Geospatial Data Abstraction Librar
ii  libgeos2c2a                   2.1.4-2    Geometry engine for Geographic Inf
ii  libgsl0                       1.7-4      GNU Scientific Library (GSL) -- li
ii  libpq4                        8.1.0-3    PostgreSQL C client library
ii  libqgis0                      0.7.4-3    QGIS Geographic Information System
ii  libqt3-mt                     3:3.3.5-4  Qt GUI Library (Threaded runtime v
ii  libsqlite3-0                  3.2.8-1    SQLite 3 shared library
ii  libstdc++6                    4.0.2-9    The GNU Standard C++ Library v3
ii  proj                          4.4.9d-2   Cartographic projection filter and

qgis recommends no packages.

-- no debconf information
diff -ur qgis-0.7.4.orig/plugins/geoprocessing/qgsdlgpgbuffer.h qgis-0.7.4/plugins/geoprocessing/qgsdlgpgbuffer.h
--- qgis-0.7.4.orig/plugins/geoprocessing/qgsdlgpgbuffer.h	2005-06-03 07:02:14.000000000 +0200
+++ qgis-0.7.4/plugins/geoprocessing/qgsdlgpgbuffer.h	2006-03-10 11:33:57.000000000 +0100
@@ -29,7 +29,7 @@
   //! Constructor
     QgsDlgPgBuffer( QgisIface * _qI = 0, QWidget * parent = 0, const char *name = 0);
     //! Destructor
-    QgsDlgPgBuffer::~QgsDlgPgBuffer();
+    ~QgsDlgPgBuffer();
     //! Set the information label in the dialog
     void setBufferLabel(QString & lbl);
     //! Get the buffer distance
diff -ur qgis-0.7.4.orig/plugins/grid_maker/graticulecreator.h qgis-0.7.4/plugins/grid_maker/graticulecreator.h
--- qgis-0.7.4.orig/plugins/grid_maker/graticulecreator.h	2005-05-29 22:04:47.000000000 +0200
+++ qgis-0.7.4/plugins/grid_maker/graticulecreator.h	2006-03-10 12:01:31.000000000 +0100
@@ -19,8 +19,8 @@
                          double theXEndPointDouble,
                          double theYEndPointDouble);
         ~GraticuleCreator() {};
-        DBFHandle GraticuleCreator::createDbf (QString theDbfName ) ;
-        SHPHandle GraticuleCreator::createShapeFile(QString theFileName ); 
+        DBFHandle createDbf (QString theDbfName ) ;
+        SHPHandle createShapeFile(QString theFileName ); 
         void writeDbfRecord (DBFHandle theDbfHandle, int theRecordIdInt, QString theLabel) ;
         void writePoint(SHPHandle theShapeHandle, int theRecordInt, double theXDouble, double y ); 
         //! Writes a WGS 84 .prj file for the generated grid
diff -ur qgis-0.7.4.orig/src/qgslabel.h qgis-0.7.4/src/qgslabel.h
--- qgis-0.7.4.orig/src/qgslabel.h	2005-06-03 11:42:55.000000000 +0200
+++ qgis-0.7.4/src/qgslabel.h	2006-03-09 19:57:52.000000000 +0100
@@ -91,7 +91,7 @@
     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 );
diff -ur qgis-0.7.4.orig/src/qgsproject.h qgis-0.7.4/src/qgsproject.h
--- qgis-0.7.4.orig/src/qgsproject.h	2005-05-12 05:21:56.000000000 +0200
+++ qgis-0.7.4/src/qgsproject.h	2006-03-09 19:51:07.000000000 +0100
@@ -95,9 +95,9 @@
        write()
      */
     //@{
-    bool QgsProject::dirty() const;
+    bool dirty() const;
 
-    void QgsProject::dirty( bool b );
+    void dirty( bool b );
     //@}
 
 
diff -ur qgis-0.7.4.orig/src/qgsprojectproperties.h qgis-0.7.4/src/qgsprojectproperties.h
--- qgis-0.7.4.orig/src/qgsprojectproperties.h	2005-10-24 02:00:18.000000000 +0200
+++ qgis-0.7.4/src/qgsprojectproperties.h	2006-03-09 19:52:14.000000000 +0100
@@ -60,7 +60,7 @@
   /*! Accessor for projection */
   QString projectionWKT();
   /*! Indicates that the projection switch is on */
-  bool QgsProjectProperties::isProjected();
+  bool isProjected();
 public slots:
   /*! 
    * Slot called when a new button (unit) is selected
diff -ur qgis-0.7.4.orig/src/qgsrasterlayerproperties.h qgis-0.7.4/src/qgsrasterlayerproperties.h
--- qgis-0.7.4.orig/src/qgsrasterlayerproperties.h	2005-07-31 07:03:14.000000000 +0200
+++ qgis-0.7.4/src/qgsrasterlayerproperties.h	2006-03-09 19:51:35.000000000 +0100
@@ -69,7 +69,7 @@
         /** \brief slot executed when the three band radio button is pressed. */
         void rbtnThreeBand_toggled( bool );
         /** \brief slot executed when user wishes to refresh raster histogram */
-        void QgsRasterLayerProperties::pbnHistRefresh_clicked();
+        void pbnHistRefresh_clicked();
         /** Override the SRS specified when the layer was loaded */
         void pbnChangeSpatialRefSys_clicked();
 


--- End Message ---
--- Begin Message ---
Source: qgis
Source-Version: 0.7.4-5

We believe that the bug you reported is fixed in the latest version of
qgis, which is due to be installed in the Debian FTP archive:

libqgis0-dev_0.7.4-5_sparc.deb
  to pool/main/q/qgis/libqgis0-dev_0.7.4-5_sparc.deb
libqgis0_0.7.4-5_sparc.deb
  to pool/main/q/qgis/libqgis0_0.7.4-5_sparc.deb
qgis-plugin-grass_0.7.4-5_sparc.deb
  to pool/main/q/qgis/qgis-plugin-grass_0.7.4-5_sparc.deb
qgis_0.7.4-5.diff.gz
  to pool/main/q/qgis/qgis_0.7.4-5.diff.gz
qgis_0.7.4-5.dsc
  to pool/main/q/qgis/qgis_0.7.4-5.dsc
qgis_0.7.4-5_sparc.deb
  to pool/main/q/qgis/qgis_0.7.4-5_sparc.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Steve Halasz <[EMAIL PROTECTED]> (supplier of updated qgis package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Sat, 19 Aug 2006 22:13:32 -0400
Source: qgis
Binary: qgis-plugin-grass libqgis0 qgis libqgis0-dev
Architecture: source sparc
Version: 0.7.4-5
Distribution: unstable
Urgency: low
Maintainer: Steve Halasz <[EMAIL PROTECTED]>
Changed-By: Steve Halasz <[EMAIL PROTECTED]>
Description: 
 libqgis0   - QGIS Geographic Information System - shared library
 libqgis0-dev - QGIS Geographic Information System - development files
 qgis       - Geographic Information System (GIS)
 qgis-plugin-grass - Plugin for accessing GRASS data from QGIS
Closes: 356215 360649 383143
Changes: 
 qgis (0.7.4-5) unstable; urgency=low
 .
   * Acknowledge GCC 4.1 NMU (Closes: #356215)
   * Update deps to libgdal1-1.3.2-dev and grass-dev (Closes: #383143, #360649)
   * Bump standards version to 3.7.2. No changes made.
Files: 
 158d7da3475565c748837f0594409d67 1141 science extra qgis_0.7.4-5.dsc
 d4a355c30b97061c8dcb3267f9ec2f44 42785 science extra qgis_0.7.4-5.diff.gz
 b02359c2247d12f81cd0484881386674 7714540 science extra qgis_0.7.4-5_sparc.deb
 ab165443945ca21ab42b3f1f960a8e44 740904 science extra 
libqgis0_0.7.4-5_sparc.deb
 af6b9bc1fbeaec3bf329367934b2e887 13580212 science extra 
libqgis0-dev_0.7.4-5_sparc.deb
 18e0f5a30b18291e34ff60d73cf97441 311360 science extra 
qgis-plugin-grass_0.7.4-5_sparc.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (GNU/Linux)

iQEVAwUBRQAokMP9a9GOLSE6AQICBQf/Q9bAP04MDoLZXRo2rpkUjXI30uXn74c0
8uL5h0zF5Biphu+hiFs+2i8OuhsSVsXuy4+XFZ2c15+uJLWKLePPlRpkQpMJTVZK
eDgg04WpX5Ov/gijp6KTUPGrFycFvaeo/eG3rYk32yw5vfmReSEjsBq/jVTzcSWx
J9AzNvtd2qSlM99O1zowrMe3I0e6ZRYM9hiPucxqf4o9gIpG1AII/u/mm119fbM/
zFtPaYT/rVrcHrEmACI6qAjjbfkf55F8JoH5sQCWOvBEm41WWheCzh5K5yIrZB4d
VuqiOen4cnj0/pRBbHUI2Yka8FhAKXrCvEX58OmgLyjwNGNRJyF8Hg==
=T+kx
-----END PGP SIGNATURE-----


--- End Message ---

Reply via email to