Changeset 31 for trunk/tests/DumbDocument.cxx
- Timestamp:
- 04/11/06 14:53:06 (3 years ago)
- Files:
-
- 1 modified
-
trunk/tests/DumbDocument.cxx (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/DumbDocument.cxx
r30 r31 74 74 DumbDocument::getPageSize (gdouble *width, gdouble *height) 75 75 { 76 *width = 100; 77 *height = 250; 76 if ( 0 == getRotation () || 270 == getRotation () ) 77 { 78 *width = 100; 79 *height = 250; 80 } 81 else 82 { 83 *width = 250; 84 *height = 100; 85 } 78 86 } 79 87
