Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Substracting Time to QTime

Substracting Time to QTime

Scheduled Pinned Locked Moved Solved General and Desktop
qtime qdatetime
3 Posts 2 Posters 460 Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • B Offline
    B Offline
    Babs
    wrote on last edited by Babs
    #1

    Hello,
    Is it possible to substract to to a QTime. For example if a have :

    QTime startDayTime=QTime::fromString(startHour(),"hh:mm");
    

    and i want to substract 2 hours from it?
    Anyone got an idea of how to do so?

    Pl45m4P 1 Reply Last reply
    0
    • B Babs

      Hello,
      Is it possible to substract to to a QTime. For example if a have :

      QTime startDayTime=QTime::fromString(startHour(),"hh:mm");
      

      and i want to substract 2 hours from it?
      Anyone got an idea of how to do so?

      Pl45m4P Offline
      Pl45m4P Offline
      Pl45m4
      wrote on last edited by Pl45m4
      #2

      @Babs

      You can add a negative amount of seconds

      https://doc.qt.io/qt-5/qtime.html#addSecs

      startDayTime.addSecs(-2 * 3600);
      

      If debugging is the process of removing software bugs, then programming must be the process of putting them in.

      ~E. W. Dijkstra

      B 1 Reply Last reply
      5
      • Pl45m4P Pl45m4

        @Babs

        You can add a negative amount of seconds

        https://doc.qt.io/qt-5/qtime.html#addSecs

        startDayTime.addSecs(-2 * 3600);
        
        B Offline
        B Offline
        Babs
        wrote on last edited by
        #3

        @Pl45m4 thank you

        1 Reply Last reply
        1

        • Login

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • Users
        • Groups
        • Search
        • Get Qt Extensions
        • Unsolved