Changeset 18588 for trunk/FACT++


Ignore:
Timestamp:
09/16/16 15:08:07 (8 years ago)
Author:
tbretz
Message:
Fixed a warning due to a missing cast.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/gui/MainWindow.cc

    r18060 r18588  
    116116void MainWindow::on_fNoutof4Val_valueChanged(int val)
    117117{
    118     const uint32_t v[2] = { -1, val };
     118    const uint32_t v[2] = { uint32_t(-1), uint32_t(val) };
    119119
    120120    if (!fInHandler)
Note: See TracChangeset for help on using the changeset viewer.