diff options
Diffstat (limited to 'kooka/kocrkadmos.cpp')
| -rw-r--r-- | kooka/kocrkadmos.cpp | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/kooka/kocrkadmos.cpp b/kooka/kocrkadmos.cpp index 17ef016f..bbbe3988 100644 --- a/kooka/kocrkadmos.cpp +++ b/kooka/kocrkadmos.cpp @@ -51,7 +51,7 @@  #include <kscanslider.h>  #include <tqcheckbox.h> -#include <kstandarddirs.h> +#include <tdestandarddirs.h>  #include <tqstringlist.h> @@ -279,26 +279,26 @@ EngineError KadmosDialog::setupGui()      (void) new TQLabel( i18n("Please classify the font type and language of the text on the image:"),  		       page );      TQHBox *locBox = new TQHBox( page ); -    m_bbFont = new TQButtonGroup(1, Qt::Horizontal, i18n("Font Type Selection"), locBox); +    m_bbFont = new TQButtonGroup(1, TQt::Horizontal, i18n("Font Type Selection"), locBox);      m_rbMachine = new TQRadioButton( i18n("Machine print"), m_bbFont );      m_rbHand    = new TQRadioButton( i18n("Hand writing"),  m_bbFont );      m_rbNorm    = new TQRadioButton( i18n("Norm font"),     m_bbFont ); -    m_gbLang = new TQGroupBox(1, Qt::Horizontal, i18n("Country"), locBox); +    m_gbLang = new TQGroupBox(1, TQt::Horizontal, i18n("Country"), locBox);      m_cbLang = new TQComboBox( m_gbLang );      m_cbLang->setCurrentText( TDELocale::defaultCountry() ); -    connect( m_bbFont, TQT_SIGNAL(clicked(int)), this, TQT_SLOT(slFontChanged(int) )); +    connect( m_bbFont, TQ_SIGNAL(clicked(int)), this, TQ_SLOT(slFontChanged(int) ));      m_rbMachine->setChecked(true);      /* --- */      TQHBox *innerBox = new TQHBox( page );      innerBox->setSpacing( KDialog::spacingHint()); -    TQButtonGroup *cbGroup = new TQButtonGroup( 1, Qt::Horizontal, i18n("OCR Modifier"), innerBox ); +    TQButtonGroup *cbGroup = new TQButtonGroup( 1, TQt::Horizontal, i18n("OCR Modifier"), innerBox );      TQ_CHECK_PTR(cbGroup);      m_cbNoise = new TQCheckBox( i18n( "Enable automatic noise reduction" ), cbGroup ); | 
