bool QPrinterProto::fullPage() const { QPrinter *item = qscriptvalue_cast<QPrinter*>(thisObject()); if (item) return item->fullPage(); return false; }
int Printer::fullPage(lua_State * L) // const : bool { QPrinter* lhs = ValueBinding<MyQPrinter>::check( L, 1 ); Util::push( L, lhs->fullPage() ); return 1; }