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

Collapse All | Expand All

(-)a/src/core/qgsmaplayerregistry.h (-4 / +5 lines)
Lines 239-244 class CORE_EXPORT QgsMapLayerRegistry : public QObject Link Here
239
    //! protected constructor
239
    //! protected constructor
240
    QgsMapLayerRegistry( QObject * parent = 0 );
240
    QgsMapLayerRegistry( QObject * parent = 0 );
241
241
242
    /** debugging member
243
        invoked when a connect() is made to this object
244
    */
245
    void connectNotify( const char * signal );
246
242
  private:
247
  private:
243
248
244
    static QgsMapLayerRegistry* mInstance;
249
    static QgsMapLayerRegistry* mInstance;
Lines 246-255 class CORE_EXPORT QgsMapLayerRegistry : public QObject Link Here
246
    QMap<QString, QgsMapLayer*> mMapLayers;
251
    QMap<QString, QgsMapLayer*> mMapLayers;
247
    QSet<QgsMapLayer*> mOwnedLayers;
252
    QSet<QgsMapLayer*> mOwnedLayers;
248
253
249
    /** debugging member
250
        invoked when a connect() is made to this object
251
    */
252
    void connectNotify( const char * signal );
253
254
254
255
255
}; // class QgsMapLayerRegistry
256
}; // class QgsMapLayerRegistry
(-)a/src/gui/qgsattributedialog.h (-1 / +2 lines)
Lines 59-67 class GUI_EXPORT QgsAttributeDialog : public QObject Link Here
59
59
60
    void dialogDestroyed();
60
    void dialogDestroyed();
61
61
62
  private:
62
  protected:
63
    bool eventFilter( QObject *obj, QEvent *event );
63
    bool eventFilter( QObject *obj, QEvent *event );
64
64
65
  private:
65
    QDialog *mDialog;
66
    QDialog *mDialog;
66
    QString mSettingsPath;
67
    QString mSettingsPath;
67
    // Used to sync multiple widgets for the same field
68
    // Used to sync multiple widgets for the same field
(-)a/src/gui/qgsmapcanvas.h (-5 / +5 lines)
Lines 410-415 class GUI_EXPORT QgsMapCanvas : public QGraphicsView Link Here
410
    /// Handle pattern for implementation object
410
    /// Handle pattern for implementation object
411
    std::auto_ptr<CanvasProperties> mCanvasProperties;
411
    std::auto_ptr<CanvasProperties> mCanvasProperties;
412
412
413
    /**debugging member
414
       invoked when a connect() is made to this object
415
    */
416
    void connectNotify( const char * signal );
417
413
  private slots:
418
  private slots:
414
    void crsTransformEnabled( bool );
419
    void crsTransformEnabled( bool );
415
420
Lines 459-469 class GUI_EXPORT QgsMapCanvas : public QGraphicsView Link Here
459
       the last entry in case a lot of resize events arrive in short time*/
464
       the last entry in case a lot of resize events arrive in short time*/
460
    QList< QPair<int, int> > mResizeQueue;
465
    QList< QPair<int, int> > mResizeQueue;
461
466
462
    /**debugging member
463
       invoked when a connect() is made to this object
464
    */
465
    void connectNotify( const char * signal );
466
467
    //! current layer in legend
467
    //! current layer in legend
468
    QgsMapLayer* mCurrentLayer;
468
    QgsMapLayer* mCurrentLayer;
469
469
(-)a/src/gui/qgsmessagelogviewer.h (-1 / +2 lines)
Lines 42-51 class GUI_EXPORT QgsMessageLogViewer: public QDialog, private Ui::QgsMessageLogV Link Here
42
  public slots:
42
  public slots:
43
    void logMessage( QString message, QString tag, QgsMessageLog::MessageLevel level );
43
    void logMessage( QString message, QString tag, QgsMessageLog::MessageLevel level );
44
44
45
  private:
45
  protected:
46
    void showEvent( QShowEvent * );
46
    void showEvent( QShowEvent * );
47
    void hideEvent( QHideEvent * );
47
    void hideEvent( QHideEvent * );
48
48
49
  private:
49
    QToolButton *mButton;
50
    QToolButton *mButton;
50
    int mCount;
51
    int mCount;
51
52

Return to bug 487222