screensaver/screensaverplugins/snsrbigclockscreensaverplugin/src/snsrblankcontainer.cpp
changeset 86 e4f038c420f7
parent 69 87476091b3f5
equal deleted inserted replaced
81:7dd137878ff8 86:e4f038c420f7
    36  */
    36  */
    37 SnsrBlankContainer::~SnsrBlankContainer()
    37 SnsrBlankContainer::~SnsrBlankContainer()
    38 {
    38 {
    39 }
    39 }
    40 
    40 
       
    41 /*!
       
    42     @copydoc SnsrBigClockContainer::update()
       
    43  */
    41 void SnsrBlankContainer::update()
    44 void SnsrBlankContainer::update()
    42 {
    45 {
    43     // nothing to do
    46     // nothing to do
    44 }
    47 }
    45 
    48 
       
    49 /*!
       
    50     @copydoc SnsrBigClockContainer::displayPowerMode()
       
    51  */
       
    52 Screensaver::ScreenPowerMode SnsrBlankContainer::displayPowerMode()
       
    53 {
       
    54     return Screensaver::ScreenModeOff;
       
    55 }
       
    56 
       
    57 /*!
       
    58     @copydoc SnsrBigClockContainer::updateIntervalInMilliseconds()
       
    59  */
    46 int SnsrBlankContainer::updateIntervalInMilliseconds()
    60 int SnsrBlankContainer::updateIntervalInMilliseconds()
    47 {
    61 {
    48     // don't start timer
    62     // don't start timer
    49     return -1;
    63     return -1;
    50 }
    64 }
    51 
    65 
       
    66 /*!
       
    67     @copydoc SnsrBigClockContainer::loadWidgets()
       
    68  */
    52 void SnsrBlankContainer::loadWidgets()
    69 void SnsrBlankContainer::loadWidgets()
    53 {
    70 {
    54     // nothing to do as we have no visual components
    71     // nothing to do as we have no visual components
    55 }
    72 }
    56 
    73