license: remove FSF postal address from boiler plate license text
[pulseview.git] / pv / widgets / timestampspinbox.cpp
index 703da6ea13cb51aaf2f9581c4cbbbbea7cc19def..f5d8d0bf5e39ce55ea13f9b7da9b6bdda5b0feaa 100644 (file)
@@ -14,8 +14,7 @@
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "timestampspinbox.hpp"
@@ -104,8 +103,7 @@ void TimestampSpinBox::on_editingFinished()
                captures.removeFirst(); // remove entire match
                QString str = captures.join("");
                setValue(pv::util::Timestamp(str.toStdString()));
-       }
-       else {
+       } else {
                // replace the malformed entered string with the old value
                updateEdit();
        }
@@ -113,8 +111,8 @@ void TimestampSpinBox::on_editingFinished()
 
 void TimestampSpinBox::updateEdit()
 {
-       QString newtext = pv::util::format_si_value(
-               value_, "s", 8, precision_);
+       QString newtext = pv::util::format_time_si(
+               value_, pv::util::SIPrefix::none, precision_);
        lineEdit()->setText(newtext);
 }