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. SettingTab on MainWIndow from a timer

SettingTab on MainWIndow from a timer

Scheduled Pinned Locked Moved General and Desktop
2 Posts 2 Posters 635 Views
  • 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.
  • D Offline
    D Offline
    DracoWiz
    wrote on last edited by
    #1

    Currently my MainWIndow is set as a sharedpointer spMainWindow
    setup as a
    @QSharedPointer<MainWindow> spMainWindow= QSharedPointer<MainWindow>(new MainWindow(nullptr, &mSettings));@ //create our window to start processing

    I have setup a timer that will reset the tab (hopefully) after x minutes of non use -- the slot is working, but on entrance to the tab function I get a seg-fault...

    My basic function is this:
    @
    void moveUiToDefaultTab(void)
    {
    qDebug()<<"Application UI moved to Default tab due to inactivity...";
    m_idleTimer.stop();
    m_idleTimer.start();
    if (spMainWindow->mPages->currentIndex() == 0) return;
    spMainWindow->mPages->setCurrentIndex(0);
    }
    }
    @

    I believe I am crossing into a separate thread - (maybe not)

    What is needed to correct my seg-fault?

    [edit: added missing coding tags @ SGaist]

    1 Reply Last reply
    0
    • SGaistS Offline
      SGaistS Offline
      SGaist
      Lifetime Qt Champion
      wrote on last edited by
      #2

      Hi and welcome to devnet,

      Maybe a silly question but, did you initialize mPages properly ?

      Interested in AI ? www.idiap.ch
      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

      1 Reply Last reply
      0

      • Login

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