Lines Matching refs:pOther

426     pOther          = 0;  in SmMathConfig()
438 delete pOther; in ~SmMathConfig()
867 if (!pOther) in LoadOther()
868 pOther = new SmCfgOther; in LoadOther()
884 pOther->bPrintTitle = bTmp; in LoadOther()
888 pOther->bPrintFormulaText = bTmp; in LoadOther()
892 pOther->bPrintFrame = bTmp; in LoadOther()
896 pOther->ePrintSize = (SmPrintSize) nTmp16; in LoadOther()
900 pOther->nPrintZoomFactor = nTmp16; in LoadOther()
904 pOther->bIsSaveOnlyUsedSymbols = bTmp; in LoadOther()
913 pOther->bIgnoreSpacesRight = bTmp; in LoadOther()
917 pOther->bToolboxVisible = bTmp; in LoadOther()
921 pOther->bAutoRedraw = bTmp; in LoadOther()
925 pOther->bFormulaCursor = bTmp; in LoadOther()
936 if (!pOther || !IsOtherModified()) in SaveOther()
947 *pValue++ <<= (sal_Bool) pOther->bPrintTitle; in SaveOther()
949 *pValue++ <<= (sal_Bool) pOther->bPrintFormulaText; in SaveOther()
951 *pValue++ <<= (sal_Bool) pOther->bPrintFrame; in SaveOther()
953 *pValue++ <<= (sal_Int16) pOther->ePrintSize; in SaveOther()
955 *pValue++ <<= (sal_Int16) pOther->nPrintZoomFactor; in SaveOther()
957 *pValue++ <<= (sal_Bool) pOther->bIsSaveOnlyUsedSymbols; in SaveOther()
962 *pValue++ <<= (sal_Bool) pOther->bIgnoreSpacesRight; in SaveOther()
964 *pValue++ <<= (sal_Bool) pOther->bToolboxVisible; in SaveOther()
966 *pValue++ <<= (sal_Bool) pOther->bAutoRedraw; in SaveOther()
968 *pValue++ <<= (sal_Bool) pOther->bFormulaCursor; in SaveOther()
1146 if (!pOther) in GetPrintSize()
1148 return pOther->ePrintSize; in GetPrintSize()
1154 if (!pOther) in SetPrintSize()
1156 if (eSize != pOther->ePrintSize) in SetPrintSize()
1158 pOther->ePrintSize = eSize; in SetPrintSize()
1166 if (!pOther) in GetPrintZoomFactor()
1168 return pOther->nPrintZoomFactor; in GetPrintZoomFactor()
1174 if (!pOther) in SetPrintZoomFactor()
1176 if (nVal != pOther->nPrintZoomFactor) in SetPrintZoomFactor()
1178 pOther->nPrintZoomFactor = nVal; in SetPrintZoomFactor()
1196 if (!pOther) in IsPrintTitle()
1198 return pOther->bPrintTitle; in IsPrintTitle()
1204 if (!pOther) in SetPrintTitle()
1206 SetOtherIfNotEqual( pOther->bPrintTitle, bVal ); in SetPrintTitle()
1212 if (!pOther) in IsPrintFormulaText()
1214 return pOther->bPrintFormulaText; in IsPrintFormulaText()
1220 if (!pOther) in SetPrintFormulaText()
1222 SetOtherIfNotEqual( pOther->bPrintFormulaText, bVal ); in SetPrintFormulaText()
1228 if (!pOther) in IsPrintFrame()
1230 return pOther->bPrintFrame; in IsPrintFrame()
1236 if (!pOther) in SetPrintFrame()
1238 SetOtherIfNotEqual( pOther->bPrintFrame, bVal ); in SetPrintFrame()
1244 if (!pOther) in IsSaveOnlyUsedSymbols()
1246 return pOther->bIsSaveOnlyUsedSymbols; in IsSaveOnlyUsedSymbols()
1252 if (!pOther) in SetSaveOnlyUsedSymbols()
1254 SetOtherIfNotEqual( pOther->bIsSaveOnlyUsedSymbols, bVal ); in SetSaveOnlyUsedSymbols()
1260 if (!pOther) in IsIgnoreSpacesRight()
1262 return pOther->bIgnoreSpacesRight; in IsIgnoreSpacesRight()
1268 if (!pOther) in SetIgnoreSpacesRight()
1270 SetOtherIfNotEqual( pOther->bIgnoreSpacesRight, bVal ); in SetIgnoreSpacesRight()
1276 if (!pOther) in IsAutoRedraw()
1278 return pOther->bAutoRedraw; in IsAutoRedraw()
1284 if (!pOther) in SetAutoRedraw()
1286 SetOtherIfNotEqual( pOther->bAutoRedraw, bVal ); in SetAutoRedraw()
1292 if (!pOther) in IsShowFormulaCursor()
1294 return pOther->bFormulaCursor; in IsShowFormulaCursor()
1300 if (!pOther) in SetShowFormulaCursor()
1302 SetOtherIfNotEqual( pOther->bFormulaCursor, bVal ); in SetShowFormulaCursor()