mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-22 17:50:52 +01:00
fix some warning messages at compilation
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@2088 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
@@ -21,8 +21,8 @@ strategy_(0)
|
||||
ConductorAutoNumerotation::ConductorAutoNumerotation(Conductor *c) :
|
||||
conductor_ (c),
|
||||
diagram_ (c -> diagram()),
|
||||
strategy_(0),
|
||||
conductor_list(c -> relatedPotentialConductors())
|
||||
conductor_list(c -> relatedPotentialConductors()),
|
||||
strategy_(0)
|
||||
{}
|
||||
|
||||
/**
|
||||
|
||||
@@ -4,9 +4,9 @@
|
||||
#include "diagram.h"
|
||||
|
||||
ConductorAutoNumerotationWidget::ConductorAutoNumerotationWidget(Conductor *c, QSet<Conductor *> cl, QWidget *parent) :
|
||||
QDialog (parent),
|
||||
conductor_(c),
|
||||
c_list(cl),
|
||||
QDialog (parent)
|
||||
c_list(cl)
|
||||
{
|
||||
#ifdef Q_WS_MAC
|
||||
setWindowFlags(Qt::Sheet);
|
||||
|
||||
@@ -26,8 +26,8 @@ class ConductorAutoNumerotationWidget : public QDialog
|
||||
void applyText();
|
||||
|
||||
//attributes
|
||||
QSet<Conductor *> c_list; //liste des conducteurs au même potentiel
|
||||
Conductor *conductor_;
|
||||
QSet<Conductor *> c_list; //liste des conducteurs au même potentiel
|
||||
QList <QRadioButton *> *radio_List;
|
||||
QLineEdit *text_field;
|
||||
QString text_;
|
||||
|
||||
Reference in New Issue
Block a user