Source Code (Use browser search to find items of interest.)

Class Index

kword'DocumentMathShowCustom (./koffice/kword/filters/mif/treebuild_document.h:511)

class DocumentMathShowCustom
{
public:
	DocumentMathShowCustom( const char* );
	
private:
	bool _value;
};



kword'DocumentMathShowCustom::DocumentMathShowCustom() (./koffice/kword/filters/mif/treebuild_document.cpp:1201)

DocumentMathShowCustom::DocumentMathShowCustom(char const * value)
{
	if( strcmp( value, "Yes" ) == 0 )
		_value = true;
	else
		_value = false;
}