Show
Ignore:
Timestamp:
06/13/06 17:09:37 (2 years ago)
Author:
jordi
Message:

Added the missing virtual function for the test dumb PrintView?.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/tests/DumbPrintView.cxx

    r226 r234  
    3535 
    3636void 
     37DumbPrintView::addColorModel (const gchar *name, const gchar *value) 
     38{ 
     39} 
     40 
     41void 
    3742DumbPrintView::addPageSize (const gchar *name, const gchar *value) 
    3843{ 
     
    4651 
    4752void 
     53DumbPrintView::addResolution (const gchar *name, const gchar *value) 
     54{ 
     55} 
     56 
     57 
     58void 
     59DumbPrintView::clearColorModelList () 
     60{ 
     61} 
     62 
     63void 
    4864DumbPrintView::clearPageSizeList () 
     65{ 
     66} 
     67 
     68void 
     69DumbPrintView::clearResolutionList () 
    4970{ 
    5071} 
     
    5677} 
    5778 
     79gchar* 
     80DumbPrintView::getColorModel () 
     81{ 
     82    return g_strdup (""); 
     83} 
     84 
    5885PrintPageLayout 
    5986DumbPrintView::getPageLayout () 
     
    6895} 
    6996 
     97gchar * 
     98DumbPrintView::getResolution () 
     99{ 
     100    return g_strdup (""); 
     101} 
     102 
    70103const gchar * 
    71104DumbPrintView::getPageRange () 
     
    111144 
    112145void 
     146DumbPrintView::selectColorModel (guint colorModelIndex) 
     147{ 
     148} 
     149 
     150void 
    113151DumbPrintView::selectPageSize (guint pageSizeIndex) 
    114152{ 
     
    117155void 
    118156DumbPrintView::selectPrinter (guint printerIndex) 
     157{ 
     158} 
     159 
     160void 
     161DumbPrintView::selectResolution (guint resolutionIndex) 
    119162{ 
    120163}