Skip to content
Snippets Groups Projects
Commit 5ccab10f authored by Gatien Ferret's avatar Gatien Ferret
Browse files

[fix] Avoid compatibility issue with a windows macro creating dialog windows

(cherry picked from commit 86019e1878f613d59481f2b4d9aa02126ab2de41)
parent 982e0428
No related branches found
No related tags found
2 merge requests!354[feat] Add in the UI of the ensor list tool to live transform data,!352[feat] Add in the UI of the sensor list tool to live transform data
Pipeline #294738 passed
Pipeline: LidarView

#294739

    ......@@ -16,7 +16,7 @@ lqLidarStateDialog::lqLidarStateDialog(QWidget *parent,
    QVBoxLayout* vbox = new QVBoxLayout;
    this->CreateDialog(vbox);
    this->CreateStateDialog(vbox);
    // Add a QPushbutton
    QPushButton * button = new QPushButton("OK");
    ......@@ -26,7 +26,7 @@ lqLidarStateDialog::lqLidarStateDialog(QWidget *parent,
    }
    //-----------------------------------------------------------------------------
    void lqLidarStateDialog::CreateDialog(QVBoxLayout *vbox)
    void lqLidarStateDialog::CreateStateDialog(QVBoxLayout* vbox)
    {
    // Display an information message if there is no property to display
    if(this->properties.empty())
    ......
    ......@@ -69,7 +69,7 @@ public:
    ~lqLidarStateDialog(){}
    void CreateDialog(QVBoxLayout * vbox);
    void CreateStateDialog(QVBoxLayout * vbox);
    std::vector<propertyInfo> properties;
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment