bnc#835985: When printing handouts using the default, 'Order' did not count.

"Left to right, then down" was the same as "Top to bottom, then right"
when printing handout; set the 6 pages explicitly as the default.

Change-Id: I4a5f58c8fcf2efdc85ad7bb23bde791c5fb87584
This commit is contained in:
Jan Holesovsky
2013-08-22 09:40:22 +02:00
parent 7fb84f7dc2
commit a6a04658fb

View File

@@ -1554,14 +1554,14 @@ private:
AutoLayout eLayout = AUTOLAYOUT_HANDOUT6;
switch (nSlidesPerHandout)
{
case 0: eLayout = AUTOLAYOUT_NONE; break; // AUTOLAYOUT_HANDOUT1; break;
case 1: eLayout = AUTOLAYOUT_HANDOUT1; break;
case 2: eLayout = AUTOLAYOUT_HANDOUT2; break;
case 3: eLayout = AUTOLAYOUT_HANDOUT3; break;
case 4: eLayout = AUTOLAYOUT_HANDOUT4; break;
default:
case 6: eLayout = AUTOLAYOUT_HANDOUT6; break;
case 9: eLayout = AUTOLAYOUT_HANDOUT9; break;
default:
case 0:
case 6: break; // use the default
}
if( !mrBase.GetDocument() )