Changeset 233 for trunk/src/gtk/PrintView.cxx
- Timestamp:
- 06/13/06 16:11:47 (2 years ago)
- Files:
-
- 1 modified
-
trunk/src/gtk/PrintView.cxx (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gtk/PrintView.cxx
r232 r233 177 177 } 178 178 179 gchar * 180 PrintView::getColorModel () 181 { 182 gchar *colorModel = NULL; 183 getOptionFromComboBox (m_ColorModelView, &colorModel); 184 return colorModel; 185 } 186 179 187 PrintPageLayout 180 188 PrintView::getPageLayout () … … 205 213 getOptionFromComboBox (m_PageSizeView, &pageSize); 206 214 return pageSize; 215 } 216 217 gchar * 218 PrintView::getResolution () 219 { 220 gchar *resolution = NULL; 221 getOptionFromComboBox (m_ResolutionView, &resolution); 222 return resolution; 207 223 } 208 224
