summaryrefslogtreecommitdiffstats
path: root/kstars/kstars/thumbnailpicker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kstars/kstars/thumbnailpicker.cpp')
-rw-r--r--kstars/kstars/thumbnailpicker.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/kstars/kstars/thumbnailpicker.cpp b/kstars/kstars/thumbnailpicker.cpp
index c9460480..e8544b6b 100644
--- a/kstars/kstars/thumbnailpicker.cpp
+++ b/kstars/kstars/thumbnailpicker.cpp
@@ -43,9 +43,9 @@
#include "detaildialog.h"
#include "skyobject.h"
-ThumbnailPicker::ThumbnailPicker( SkyObject *o, const TQPixmap &current, TQWidget *parent, const char *name )
- : KDialogBase( KDialogBase::Plain, i18n( "Choose Thumbnail Image" ), Ok|Cancel, Ok, parent, name ),
- SelectedImageIndex(-1), dd((DetailDialog*)parent), Object(o), bImageFound( false )
+ThumbnailPicker::ThumbnailPicker( SkyObject *o, const TQPixmap &current, TQWidget *tqparent, const char *name )
+ : KDialogBase( KDialogBase::Plain, i18n( "Choose Thumbnail Image" ), Ok|Cancel, Ok, tqparent, name ),
+ SelectedImageIndex(-1), dd((DetailDialog*)tqparent), Object(o), bImageFound( false )
{
Image = new TQPixmap( current );
ImageRect = new TQRect( 0, 0, 200, 200 );
@@ -85,9 +85,9 @@ void ThumbnailPicker::slotFillList() {
//Query Google Image Search:
KURL gURL( "http://images.google.com/images" );
//Search for the primary name, or longname and primary name
- TQString sName = TQString("\"%1\"").arg( Object->name() );
+ TQString sName = TQString("\"%1\"").tqarg( Object->name() );
if ( Object->longname() != Object->name() ) {
- sName = TQString("\"%1\" ").arg( Object->longname() ) + sName;
+ sName = TQString("\"%1\" ").tqarg( Object->longname() ) + sName;
}
gURL.addQueryItem( "q", sName ); //add the Google-image query string
@@ -141,14 +141,14 @@ void ThumbnailPicker::parseGooglePage( TQStringList &ImList, TQString URL ) {
return;
}
- int index = PageHTML.find( "?imgurl=", 0 );
+ int index = PageHTML.tqfind( "?imgurl=", 0 );
while ( index >= 0 ) {
index += 8; //move to end of "?imgurl=" marker
//Image URL is everything from index to next occurence of "&"
- ImList.append( PageHTML.mid( index, PageHTML.find( "&", index ) - index ) );
+ ImList.append( PageHTML.mid( index, PageHTML.tqfind( "&", index ) - index ) );
- index = PageHTML.find( "?imgurl=", index );
+ index = PageHTML.tqfind( "?imgurl=", index );
}
}
@@ -176,7 +176,7 @@ void ThumbnailPicker::downloadReady(KIO::Job *job) {
//Add image to list
//If image is taller than desktop, rescale it.
- //I tried to use kapp->style().pixelMetric( TQStyle::PM_TitleBarHeight )
+ //I tried to use kapp->style().tqpixelMetric( TQStyle::PM_TitleBarHeight )
//for the titlebar height, but this returned zero.
//Hard-coding 25 instead :(
if ( tmp.exists() ) {
@@ -195,7 +195,7 @@ void ThumbnailPicker::downloadReady(KIO::Job *job) {
// this returns zero...
// //DEBUG
-// kdDebug() << "Title bar height: " << kapp->style().pixelMetric( TQStyle::PM_TitleBarHeight ) << endl;
+// kdDebug() << "Title bar height: " << kapp->style().tqpixelMetric( TQStyle::PM_TitleBarHeight ) << endl;
if ( h > hDesk )
im = im.smoothScale( w*hDesk/h, hDesk );
@@ -313,7 +313,7 @@ void ThumbnailPicker::slotSetFromURL() {
if ( im.isNull() ) {
KMessageBox::sorry( 0,
- i18n("Failed to load image at %1").arg( localFile.name() ),
+ i18n("Failed to load image at %1").tqarg( localFile.name() ),
i18n("Failed to Load Image") );
return;
}