okular/kprinterwrapper.h
Angus Leeming f4e54dbfb7 SVN_SILENT:
Fix two typos in comments:
s/Manuell/Manual/
s/environemt/environment/

svn path=/trunk/KDE/kdegraphics/kviewshell/plugins/dvi/; revision=472135
2005-10-19 22:43:24 +00:00

25 lines
433 B
C++

// -*- C++ -*-
// kprinterwrapper.h
//
// Part of KDVI - A DVI previewer for the KDE desktop environment
//
// (C) 2003 Stefan Kebekus
// Distributed under the GPL
#ifndef _PRINTERWRAPPER_H
#define _PRINTERWRAPPER_H
#include "kprinter.h"
class KDVIPrinterWrapper : public KPrinter
{
public:
KDVIPrinterWrapper() : KPrinter(true, QPrinter::ScreenResolution) {; };
void doPreparePrinting() { preparePrinting(); };
};
#endif