Fix incorrectly renamed strings

pull/1/head
Slávek Banko 9 years ago
parent dc1420defb
commit 357c5d375f

@ -209,13 +209,13 @@ TopLevel::TopLevel (TQWidget *, const char *name)
qtwin = faxqtwin->winId(); qtwin = faxqtwin->winId();
faxqtwin->setFrameStyle(TQFrame::Panel | TQFrame::Sunken); faxqtwin->setFrameStyle(TQFrame::Panel | TQFrame::Sunken);
// Create aQt::Vertical scroll bar // Create a Vertical scroll bar
vsb = new TQScrollBar( Qt::Vertical,faxqtwin,"scrollBar" ); vsb = new TQScrollBar( Qt::Vertical,faxqtwin,"scrollBar" );
vsb->hide(); vsb->hide();
connect( vsb, TQT_SIGNAL(valueChanged(int)), TQT_SLOT(scrollVert(int)) ); connect( vsb, TQT_SIGNAL(valueChanged(int)), TQT_SLOT(scrollVert(int)) );
// Create aQt::Horizontal scroll bar // Create a Horizontal scroll bar
hsb = new TQScrollBar( Qt::Horizontal,faxqtwin,"scrollBar" ); hsb = new TQScrollBar( Qt::Horizontal,faxqtwin,"scrollBar" );
connect( hsb, TQT_SIGNAL(valueChanged(int)), TQT_SLOT(scrollHorz(int)) ); connect( hsb, TQT_SIGNAL(valueChanged(int)), TQT_SLOT(scrollHorz(int)) );
@ -530,7 +530,7 @@ void loadfile(TQString filename)
(void) notetiff(TQFile::encodeName(filename)); (void) notetiff(TQFile::encodeName(filename));
struct pagenode *pn; struct pagenode *pn;
for(pn = firstpage; pn; pn = pn->next) for(pn = firstpage; pn; pn = pn->next)
if (!pn->dpiX) { if (!pn->dpiX) {
pn->dpiX = dpi.width(); pn->dpiX = dpi.width();
pn->dpiY = dpi.height(); pn->dpiY = dpi.height();
@ -705,7 +705,7 @@ void TopLevel::print(){
printer.setDocName( TQString("%1 - %2").arg(firstpage->name).arg(i18n("KFax"))); printer.setDocName( TQString("%1 - %2").arg(firstpage->name).arg(i18n("KFax")));
printer.setDocFileName( firstpage->name ); printer.setDocFileName( firstpage->name );
printer.setPageSelection( KPrinter::ApplicationSide ); printer.setPageSelection( KPrinter::ApplicationSide );
printer.setMinMax( 1, pages ); printer.setMinMax( 1, pages );
printer.setCurrentPage( currentpage ); printer.setCurrentPage( currentpage );
printer.addDialogPage(new KFAXPrintSettings()); printer.addDialogPage(new KFAXPrintSettings());
if ( !printer.setup( this ) ) if ( !printer.setup( this ) )
@ -777,9 +777,9 @@ void TopLevel::printIt( KPrinter &printer, TQPainter &painter )
Image->height * dm.logicalDpiY() / pn->dpiY Image->height * dm.logicalDpiY() / pn->dpiY
); );
kdDebug() << "Org image size = " << Image->width << "x" << Image->height kdDebug() << "Org image size = " << Image->width << "x" << Image->height
<< " logical picture res = " << pn->dpiX << "x" << pn->dpiY << endl; << " logical picture res = " << pn->dpiX << "x" << pn->dpiY << endl;
kdDebug() << "New image size = " << size kdDebug() << "New image size = " << size
<< " logical printer res = " << dm.logicalDpiX() << "x" << dm.logicalDpiY() << endl; << " logical printer res = " << dm.logicalDpiX() << "x" << dm.logicalDpiY() << endl;
uint top, left, bottom, right; uint top, left, bottom, right;
@ -826,7 +826,7 @@ void TopLevel::saveNetFile( const KURL& dest)
} }
statusbar->message( i18n( "Saving..." ) ); statusbar->message( i18n( "Saving..." ) );
KURL source = KURL::fromPathOrURL(thispage->pathname); KURL source = KURL::fromPathOrURL(thispage->pathname);
bool ok = TDEIO::NetAccess::file_copy( source, dest, -1, true, false, this); bool ok = TDEIO::NetAccess::file_copy( source, dest, -1, true, false, this);
@ -1359,7 +1359,7 @@ void TopLevel::newPage(){
setCaption(TQFile::decodeName(thispage->name)); setCaption(TQFile::decodeName(thispage->name));
Image = generateZoomImages(oz); Image = generateZoomImages(oz);
PaneWidth = Image->width; PaneWidth = Image->width;
PaneHeight = Image->height; PaneHeight = Image->height;
Refresh = 1; Refresh = 1;

@ -59,7 +59,7 @@ class kpViewScrollableContainer;
class kpView : public TQWidget class kpView : public TQWidget
{ {
Q_OBJECT Q_OBJECT
public: public:
/** /**
@ -148,8 +148,8 @@ public:
/** /**
* Sets the horizontal and vertical zoom levels. * Sets the horizontal and vertical zoom levels.
* *
* @param hzoomQt::Horizontal zoom level. * @param hzoom Horizontal zoom level.
* @param vzoomQt::Vertical zoom level. * @param vzoom Vertical zoom level.
* *
* If reimplementing, you must call this base implementation. * If reimplementing, you must call this base implementation.
*/ */
@ -228,7 +228,7 @@ protected slots:
public: public:
/** /**
* @param viewXQt::Horizontal position in view coordinates. * @param viewX Horizontal position in view coordinates.
* *
* @returns viewX transformed to document coordinates, based on the * @returns viewX transformed to document coordinates, based on the
* origin() and zoomLevelX(). * origin() and zoomLevelX().
@ -236,7 +236,7 @@ public:
double transformViewToDocX (double viewX) const; double transformViewToDocX (double viewX) const;
/** /**
* @param viewYQt::Vertical position in view coordinates. * @param viewY Vertical position in view coordinates.
* *
* @returns viewY transformed to document coordinates, based on the * @returns viewY transformed to document coordinates, based on the
* origin() and zoomLevelY(). * origin() and zoomLevelY().
@ -265,7 +265,7 @@ public:
/** /**
* @param docXQt::Horizontal position in document coordinates. * @param docX Horizontal position in document coordinates.
* *
* @returns docX transformed to view coordinates, based on the origin() * @returns docX transformed to view coordinates, based on the origin()
* and zoomLevelX(). * and zoomLevelX().
@ -273,7 +273,7 @@ public:
double transformDocToViewX (double docX) const; double transformDocToViewX (double docX) const;
/** /**
* @param docYQt::Vertical position in document coordinates. * @param docY Vertical position in document coordinates.
* *
* @returns docY transformed to view coordinates, based on the origin() * @returns docY transformed to view coordinates, based on the origin()
* and zoomLevelY(). * and zoomLevelY().
@ -313,8 +313,8 @@ public:
*/ */
TQPoint transformViewToOtherView (const TQPoint &viewPoint, TQPoint transformViewToOtherView (const TQPoint &viewPoint,
const kpView *otherView); const kpView *otherView);
/** /**
* @returns the approximate view width required to display the entire * @returns the approximate view width required to display the entire
* document(), based on the zoom level only. * document(), based on the zoom level only.
@ -374,7 +374,7 @@ public:
* is set to queue updates. * is set to queue updates.
*/ */
void updateQueuedArea (); void updateQueuedArea ();
void updateMicroFocusHint (const TQRect &microFocusHint); void updateMicroFocusHint (const TQRect &microFocusHint);
@ -484,7 +484,7 @@ protected:
virtual void dragEnterEvent (TQDragEnterEvent *); virtual void dragEnterEvent (TQDragEnterEvent *);
virtual void dragLeaveEvent (TQDragLeaveEvent *); virtual void dragLeaveEvent (TQDragLeaveEvent *);
virtual void imStartEvent (TQIMEvent *e); virtual void imStartEvent (TQIMEvent *e);
virtual void imComposeEvent (TQIMEvent *e); virtual void imComposeEvent (TQIMEvent *e);
virtual void imEndEvent (TQIMEvent *e); virtual void imEndEvent (TQIMEvent *e);

@ -96,7 +96,7 @@ EngineError KGOCRDialog::setupGui()
TDEConfig *conf = TDEGlobal::config (); TDEConfig *conf = TDEGlobal::config ();
conf->setGroup( CFG_GROUP_OCR_DIA ); conf->setGroup( CFG_GROUP_OCR_DIA );
//Qt::Horizontal line // Horizontal line
// (void) new KSeparator( KSeparator::HLine, page); // (void) new KSeparator( KSeparator::HLine, page);
// Entry-Field. // Entry-Field.

@ -271,7 +271,7 @@ EngineError KadmosDialog::setupGui()
/* continue page setup on the first page */ /* continue page setup on the first page */
TQVBox *page = ocrPage(); TQVBox *page = ocrPage();
//Qt::Horizontal line // Horizontal line
(void) new KSeparator( KSeparator::HLine, page); (void) new KSeparator( KSeparator::HLine, page);
// FIXME: dynamic classifier reading. // FIXME: dynamic classifier reading.

@ -107,7 +107,7 @@ EngineError ocradDialog::setupGui()
TDEConfig *conf = TDEGlobal::config (); TDEConfig *conf = TDEGlobal::config ();
conf->setGroup( CFG_GROUP_OCR_DIA ); conf->setGroup( CFG_GROUP_OCR_DIA );
//Qt::Horizontal line // Horizontal line
// (void) new KSeparator( KSeparator::HLine, page); // (void) new KSeparator( KSeparator::HLine, page);
// Entry-Field. // Entry-Field.

@ -128,7 +128,7 @@ void Kooka::setupActions()
KStdAction::print(TQT_TQOBJECT(this), TQT_SLOT(filePrint()), actionCollection()); KStdAction::print(TQT_TQOBJECT(this), TQT_SLOT(filePrint()), actionCollection());
KStdAction::quit(TQT_TQOBJECT(this) , TQT_SLOT(close()), actionCollection()); KStdAction::quit(TQT_TQOBJECT(this) , TQT_SLOT(close()), actionCollection());
KStdAction::keyBindings(guiFactory(), TQT_SLOT(configureShortcuts()), KStdAction::keyBindings(guiFactory(), TQT_SLOT(configureShortcuts()),
actionCollection()); actionCollection());
KStdAction::configureToolbars(TQT_TQOBJECT(this), TQT_SLOT(optionsConfigureToolbars()), KStdAction::configureToolbars(TQT_TQOBJECT(this), TQT_SLOT(optionsConfigureToolbars()),
actionCollection()); actionCollection());
@ -192,7 +192,7 @@ actionCollection());
TQT_TQOBJECT(this), TQT_SLOT( slMirrorVertical() ), TQT_TQOBJECT(this), TQT_SLOT( slMirrorVertical() ),
actionCollection(), "mirrorVertical" ); actionCollection(), "mirrorVertical" );
(void) new TDEAction(i18n("&Mirror ImageQt::Horizontally"), "mirror-horiz", CTRL+Key_M, (void) new TDEAction(i18n("&Mirror Image Horizontally"), "mirror-horiz", CTRL+Key_M,
TQT_TQOBJECT(this), TQT_SLOT( slMirrorHorizontal() ), TQT_TQOBJECT(this), TQT_SLOT( slMirrorHorizontal() ),
actionCollection(), "mirrorHorizontal" ); actionCollection(), "mirrorHorizontal" );

@ -86,12 +86,12 @@
<widget class="TQComboBox" row="1" column="1"> <widget class="TQComboBox" row="1" column="1">
<item> <item>
<property name="text"> <property name="text">
<string>Blinds::Vertical</string> <string>Blinds Vertical</string>
</property> </property>
</item> </item>
<item> <item>
<property name="text"> <property name="text">
<string>Blinds::Horizontal</string> <string>Blinds Horizontal</string>
</property> </property>
</item> </item>
<item> <item>
@ -136,22 +136,22 @@
</item> </item>
<item> <item>
<property name="text"> <property name="text">
<string>SplitQt::Horizontal In</string> <string>Split Horizontal In</string>
</property> </property>
</item> </item>
<item> <item>
<property name="text"> <property name="text">
<string>SplitQt::Horizontal Out</string> <string>Split Horizontal Out</string>
</property> </property>
</item> </item>
<item> <item>
<property name="text"> <property name="text">
<string>SplitQt::Vertical In</string> <string>Split Vertical In</string>
</property> </property>
</item> </item>
<item> <item>
<property name="text"> <property name="text">
<string>SplitQt::Vertical Out</string> <string>Split Vertical Out</string>
</property> </property>
</item> </item>
<item> <item>

@ -62,9 +62,9 @@ struct PCXHEADER
// calculate from Xmax-Xmin.· // calculate from Xmax-Xmin.·
TQ_UINT16 PaletteInfo; // How to interpret palette- 1 = Color/BW, TQ_UINT16 PaletteInfo; // How to interpret palette- 1 = Color/BW,
// 2 = Grayscale ( ignored in PB IV/ IV + )· // 2 = Grayscale ( ignored in PB IV/ IV + )·
TQ_UINT16 HScreenSize; //Qt::Horizontal screen size in pixels. New field TQ_UINT16 HScreenSize; // Horizontal screen size in pixels. New field
// found only in PB IV/IV Plus // found only in PB IV/IV Plus
TQ_UINT16 VScreenSize; //Qt::Vertical screen size in pixels. New field TQ_UINT16 VScreenSize; // Vertical screen size in pixels. New field
// found only in PB IV/IV Plus // found only in PB IV/IV Plus
TQ_UINT8 Filler[ 54 ]; // Blank to fill out 128 byte header. Set all TQ_UINT8 Filler[ 54 ]; // Blank to fill out 128 byte header. Set all
// bytes to 0 // bytes to 0
@ -73,7 +73,7 @@ struct PCXHEADER
class KPcxPlugin: public KFilePlugin class KPcxPlugin: public KFilePlugin
{ {
Q_OBJECT Q_OBJECT
public: public:
KPcxPlugin(TQObject *parent, const char *name, const TQStringList& args); KPcxPlugin(TQObject *parent, const char *name, const TQStringList& args);

Loading…
Cancel
Save