Changeset 234 for trunk/tests/DumbPrintView.cxx
- Timestamp:
- 06/13/06 17:09:37 (2 years ago)
- Files:
-
- 1 modified
-
trunk/tests/DumbPrintView.cxx (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/DumbPrintView.cxx
r226 r234 35 35 36 36 void 37 DumbPrintView::addColorModel (const gchar *name, const gchar *value) 38 { 39 } 40 41 void 37 42 DumbPrintView::addPageSize (const gchar *name, const gchar *value) 38 43 { … … 46 51 47 52 void 53 DumbPrintView::addResolution (const gchar *name, const gchar *value) 54 { 55 } 56 57 58 void 59 DumbPrintView::clearColorModelList () 60 { 61 } 62 63 void 48 64 DumbPrintView::clearPageSizeList () 65 { 66 } 67 68 void 69 DumbPrintView::clearResolutionList () 49 70 { 50 71 } … … 56 77 } 57 78 79 gchar* 80 DumbPrintView::getColorModel () 81 { 82 return g_strdup (""); 83 } 84 58 85 PrintPageLayout 59 86 DumbPrintView::getPageLayout () … … 68 95 } 69 96 97 gchar * 98 DumbPrintView::getResolution () 99 { 100 return g_strdup (""); 101 } 102 70 103 const gchar * 71 104 DumbPrintView::getPageRange () … … 111 144 112 145 void 146 DumbPrintView::selectColorModel (guint colorModelIndex) 147 { 148 } 149 150 void 113 151 DumbPrintView::selectPageSize (guint pageSizeIndex) 114 152 { … … 117 155 void 118 156 DumbPrintView::selectPrinter (guint printerIndex) 157 { 158 } 159 160 void 161 DumbPrintView::selectResolution (guint resolutionIndex) 119 162 { 120 163 }
