Show
Ignore:
Timestamp:
06/10/06 05:34:50 (2 years ago)
Author:
jordi
Message:

I've added the missing pure virtual function from last week and also added a new test function for the Config class to test the last saved folder option.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/tests/DumbMainView.cxx

    r177 r205  
    7373    g_free (m_Title); 
    7474} 
    75              
    76 void  
     75 
     76void 
    7777DumbMainView::activeZoomFit (gboolean active) 
    7878{ 
     
    8080} 
    8181 
    82 void  
     82void 
    8383DumbMainView::activeZoomWidth (gboolean active) 
    8484{ 
     
    9797    return m_PageView; 
    9898} 
    99              
     99 
     100IPreferencesView * 
     101DumbMainView::getPreferencesView () 
     102{ 
     103    return (IPreferencesView *)0; 
     104} 
     105 
    100106gchar * 
    101107DumbMainView::openFileDialog (const gchar *lastFolder) 
     
    113119} 
    114120 
     121gchar * 
     122DumbMainView::saveFileDialog (const gchar *lastFolder) 
     123{ 
     124    // Do nothing. 
     125    return g_strdup (""); 
     126} 
     127 
    115128void 
    116129DumbMainView::sensitiveGoToFirstPage (gboolean sensitive) 
     
    166179} 
    167180 
    168 void  
     181void 
    169182DumbMainView::sensitiveRotateRight (gboolean sensitive) 
    170183{ 
    171184    m_SensitiveRotateRight = sensitive; 
     185} 
     186 
     187void 
     188DumbMainView::sensitiveSave (gboolean sensitive) 
     189{ 
     190} 
     191 
     192void 
     193DumbMainView::sensitiveZoom (gboolean sensitive) 
     194{ 
    172195} 
    173196 
     
    200223{ 
    201224    return (const gchar *)m_GoToPageText; 
     225} 
     226 
     227const gchar * 
     228DumbMainView::getZoomText () 
     229{ 
     230    return ""; 
    202231} 
    203232 
     
    236265void 
    237266DumbMainView::setStatusBarText (const gchar *text) 
     267{ 
     268} 
     269 
     270void 
     271DumbMainView::setZoomText (const gchar *text) 
    238272{ 
    239273}