Remove additional unneeded tq method conversions

pull/4/head
Timothy Pearson 13 years ago
parent df8ca9f120
commit 9697834311

@ -354,7 +354,7 @@ void BeagleSearch::hits_added_cb (BeagleQuery *query, BeagleHitsAddedResponse *r
const char *property = (char*)properties->data;
if (property) {
if (propertiesInfo[i].label) {
TQString propertystr = i18n(propertiesInfo[i].label).tqarg(property);
TQString propertystr = i18n(propertiesInfo[i].label).arg(property);
result->properties.append(propertystr);
}
else

@ -107,7 +107,7 @@
<property name="pixmap">
<pixmap>image0</pixmap>
</property>
<property name="tqalignment">
<property name="alignment">
<set>AlignCenter</set>
</property>
</widget>
@ -129,7 +129,7 @@
<property name="textFormat">
<enum>RichText</enum>
</property>
<property name="tqalignment">
<property name="alignment">
<set>WordBreak|AlignCenter</set>
</property>
</widget>
@ -287,7 +287,7 @@
<property name="text">
<string>Description</string>
</property>
<property name="tqalignment">
<property name="alignment">
<set>WordBreak|AlignTop</set>
</property>
</widget>
@ -306,7 +306,7 @@
<property name="text">
<string>Properties</string>
</property>
<property name="tqalignment">
<property name="alignment">
<set>WordBreak|AlignTop</set>
</property>
</widget>

@ -129,7 +129,7 @@ void KerryApplication::init(const KAboutData* /*about*/)
configChanged();
sysTrayIcon->setPixmap(sysTrayIcon->loadIcon("kerry_systemtray"));
TQToolTip::add(sysTrayIcon, i18n("Kerry Beagle Search (%1)").tqarg(globalKeys->shortcut("Show Kerry Dialog").seq(0).toString()));
TQToolTip::add(sysTrayIcon, i18n("Kerry Beagle Search (%1)").arg(globalKeys->shortcut("Show Kerry Dialog").seq(0).toString()));
sysTrayIcon->show();

@ -367,13 +367,13 @@ void SearchDlg::updateStatus()
const int count = displayed_results.count();
TQString text;
if (displayAmount==1)
text=i18n("<b>%1 results</b> found.").tqarg(displayed_results.count());
text=i18n("<b>%1 results</b> found.").arg(displayed_results.count());
else if (count==0)
text=i18n("<qt>No results.</qt>").replace("<qt>",TQString()).replace("</qt>",TQString());
else if (displayOffset==0)
text=i18n("Best <b>%1 results of %2</b> shown.").tqarg(tableHits->count()).tqarg(displayed_results.count());
text=i18n("Best <b>%1 results of %2</b> shown.").arg(tableHits->count()).arg(displayed_results.count());
else
text=i18n("Results <b>%1 through %2 of %3</b> are shown.").tqarg(displayOffset+1).tqarg(displayOffset+tableHits->count()).tqarg(displayed_results.count());
text=i18n("Results <b>%1 through %2 of %3</b> are shown.").arg(displayOffset+1).arg(displayOffset+tableHits->count()).arg(displayed_results.count());
#if 0
if (still_searching)
@ -395,7 +395,7 @@ void SearchDlg::search()
tableHits->clear();
HitWidget* item = new HitWidget(TQString(), TQString());
TQLabel *headerLabel = new TQLabel(item);
headerLabel->setText(i18n("The query for \"%1\" failed.").tqarg(current_query.get()));
headerLabel->setText(i18n("The query for \"%1\" failed.").arg(current_query.get()));
item->insertHeaderWidget(0,headerLabel);
item->setIcon("messagebox_critical");
@ -572,7 +572,7 @@ void SearchDlg::insertResult(BeagleSearch::beagle_result_struct *result,int inde
TQDateTime datetime;
datetime.setTime_t(result->last_index_time);
if (datetime.date().year()>1970)
description = description + i18n("Last viewed: %1").tqarg(KGlobal::locale()->formatDateTime(datetime,false))+"<br>";
description = description + i18n("Last viewed: %1").arg(KGlobal::locale()->formatDateTime(datetime,false))+"<br>";
}
item->setDescriptionText(description +i18n("URL:")+" "+*(result->uri)+"</qt>");
@ -587,7 +587,7 @@ void SearchDlg::insertResult(BeagleSearch::beagle_result_struct *result,int inde
title = takeProperty("Title",_properties);
headerFileLabel->setText(title.isEmpty() ? i18n("Untitled Page") : title);
headerFileLabel->setAlignment(headerFileLabel->tqalignment() | TQt::SingleLine);
headerFileLabel->setAlignment(headerFileLabel->alignment() | TQt::SingleLine);
headerFileLabel->setURL(*(result->uri));
item->insertHeaderWidget(0,headerFileLabel);
connect(headerFileLabel, TQT_SIGNAL(leftClickedURL()), TQT_SLOT(slotOpen()));
@ -597,14 +597,14 @@ void SearchDlg::insertResult(BeagleSearch::beagle_result_struct *result,int inde
TQDateTime datetime;
datetime.setTime_t(result->last_index_time);
item->setDescriptionText("<qt>"+ i18n("Published: %1").tqarg(KGlobal::locale()->formatDateTime(datetime,false))+"<br>");
item->setDescriptionText("<qt>"+ i18n("Published: %1").arg(KGlobal::locale()->formatDateTime(datetime,false))+"<br>");
if (result->snippet)
item->setPropertiesText("<qt>"+*(result->snippet)+"</qt>");
TQLabel *headerLabel = new TQLabel(item);
headerLabel->setText(i18n("Weblog:"));
headerLabel->setAlignment(headerLabel->tqalignment() | TQt::SingleLine);
headerLabel->setAlignment(headerLabel->alignment() | TQt::SingleLine);
item->insertHeaderWidget(0,headerLabel);
TQStringList _properties(result->properties);
@ -615,7 +615,7 @@ void SearchDlg::insertResult(BeagleSearch::beagle_result_struct *result,int inde
KerryLabel *headerFileLabel = new KerryLabel(item);
headerFileLabel->setText(title.isEmpty() ? i18n("Untitled Entry") : title);
headerFileLabel->setAlignment(headerFileLabel->tqalignment() | TQt::SingleLine);
headerFileLabel->setAlignment(headerFileLabel->alignment() | TQt::SingleLine);
headerFileLabel->setURL(identifier);
item->insertHeaderWidget(1,headerFileLabel);
connect(headerFileLabel, TQT_SIGNAL(leftClickedURL()), TQT_SLOT(slotOpen()));
@ -625,7 +625,7 @@ void SearchDlg::insertResult(BeagleSearch::beagle_result_struct *result,int inde
TQDateTime datetime;
datetime.setTime_t(result->last_index_time);
item->setDescriptionText("<qt>"+ i18n("Last modified: %1").tqarg(KGlobal::locale()->formatDateTime(datetime,false))+"<br>");
item->setDescriptionText("<qt>"+ i18n("Last modified: %1").arg(KGlobal::locale()->formatDateTime(datetime,false))+"<br>");
if (result->snippet)
item->setPropertiesText("<qt>"+*(result->snippet)+"</qt>");
@ -643,7 +643,7 @@ void SearchDlg::insertResult(BeagleSearch::beagle_result_struct *result,int inde
item->setIcon("contents2");
TQDateTime datetime;
datetime.setTime_t(result->last_index_time);
item->setDescriptionText("<qt>"+ i18n("Last modified: %1").tqarg(KGlobal::locale()->formatDateTime(datetime,false))+"<br>");
item->setDescriptionText("<qt>"+ i18n("Last modified: %1").arg(KGlobal::locale()->formatDateTime(datetime,false))+"<br>");
if (result->snippet)
@ -654,7 +654,7 @@ void SearchDlg::insertResult(BeagleSearch::beagle_result_struct *result,int inde
KerryLabel *headerNoteLabel = new KerryLabel(item);
headerNoteLabel->setText(title.isEmpty() ? i18n("Untitled Entry") : title);
headerNoteLabel->setAlignment(headerNoteLabel->tqalignment() | TQt::SingleLine);
headerNoteLabel->setAlignment(headerNoteLabel->alignment() | TQt::SingleLine);
headerNoteLabel->setURL(item->uri());
item->insertHeaderWidget(0,headerNoteLabel);
connect(headerNoteLabel, TQT_SIGNAL(leftClickedURL()), TQT_SLOT(slotOpen()));
@ -668,9 +668,9 @@ void SearchDlg::insertResult(BeagleSearch::beagle_result_struct *result,int inde
TQString properties;
TQDateTime datetime;
datetime = datetimeFromString(takeProperty("fixme:starttime",_properties));
properties = properties + i18n("Start time: %1").tqarg(KGlobal::locale()->formatDateTime(datetime,false)) + "<br>";
properties = properties + i18n("Start time: %1").arg(KGlobal::locale()->formatDateTime(datetime,false)) + "<br>";
datetime = datetimeFromString(takeProperty("fixme:endtime",_properties));
properties = properties + i18n("End time: %1").tqarg(KGlobal::locale()->formatDateTime(datetime,false)) + "<br>";
properties = properties + i18n("End time: %1").arg(KGlobal::locale()->formatDateTime(datetime,false)) + "<br>";
BeagleSearch::PropertyList::iterator it;
for ( it = _properties.begin(); it != _properties.end(); ++it )
@ -735,15 +735,15 @@ void SearchDlg::insertResult(BeagleSearch::beagle_result_struct *result,int inde
number = addresseee.phoneNumber(KABC::PhoneNumber::Work).number();
if (!number.isEmpty())
properties=properties+i18n("Business phone: %1").tqarg(number)+"<br>";
properties=properties+i18n("Business phone: %1").arg(number)+"<br>";
number = addresseee.phoneNumber(KABC::PhoneNumber::Cell).number();
if (!number.isEmpty())
properties=properties+i18n("Mobile phone: %1").tqarg(number)+"<br>";
properties=properties+i18n("Mobile phone: %1").arg(number)+"<br>";
number = addresseee.phoneNumber(KABC::PhoneNumber::Home).number();
if (!number.isEmpty())
properties=properties+i18n("Home phone: %1").tqarg(number)+"<br>";
properties=properties+i18n("Home phone: %1").arg(number)+"<br>";
if (!properties.isEmpty())
item->setDescriptionText("<qt>"+properties+"</qt>");
@ -777,7 +777,7 @@ void SearchDlg::insertResult(BeagleSearch::beagle_result_struct *result,int inde
TQDateTime received_datetime;
received_datetime = datetimeFromString(received);
if (!received.isEmpty())
item->setDescriptionText("<qt>"+i18n("Received: %1").tqarg(KGlobal::locale()->formatDateTime(received_datetime,false))+"</qt>");
item->setDescriptionText("<qt>"+i18n("Received: %1").arg(KGlobal::locale()->formatDateTime(received_datetime,false))+"</qt>");
TQString properties;
BeagleSearch::PropertyList::iterator it;
@ -801,7 +801,7 @@ void SearchDlg::insertResult(BeagleSearch::beagle_result_struct *result,int inde
TQLabel *headerLabel = new TQLabel(item);
headerLabel->setText(i18n("From"));
headerLabel->setAlignment(headerLabel->tqalignment() | TQt::SingleLine);
headerLabel->setAlignment(headerLabel->alignment() | TQt::SingleLine);
item->insertHeaderWidget(1,headerLabel);
KerryLabel *headerFromLabel = new KerryLabel(item);
@ -825,7 +825,7 @@ void SearchDlg::insertResult(BeagleSearch::beagle_result_struct *result,int inde
TQLabel *headerLabel = new TQLabel(item);
headerLabel->setText(i18n("Application:"));
headerLabel->setAlignment(headerLabel->tqalignment() | TQt::SingleLine);
headerLabel->setAlignment(headerLabel->alignment() | TQt::SingleLine);
item->insertHeaderWidget(0,headerLabel);
KerryLabel *headerFileLabel = new KerryLabel(item);
@ -844,7 +844,7 @@ void SearchDlg::insertResult(BeagleSearch::beagle_result_struct *result,int inde
TQDateTime datetime;
datetime.setTime_t(result->last_index_time);
item->setDescriptionText("<qt>"+i18n("Date: %1").tqarg(KGlobal::locale()->formatDateTime(datetime,false)+"</qt>"));
item->setDescriptionText("<qt>"+i18n("Date: %1").arg(KGlobal::locale()->formatDateTime(datetime,false)+"</qt>"));
if (result->snippet)
item->setPropertiesText("<qt>"+*(result->snippet)+ "</qt>");
@ -853,7 +853,7 @@ void SearchDlg::insertResult(BeagleSearch::beagle_result_struct *result,int inde
headerFileLabel->setURL(*(result->uri));
TQStringList _properties(result->properties);
TQString person = takeProperty("fixme:speakingto",_properties);
headerFileLabel->setText(i18n("Conversation With %1").tqarg(person.isEmpty() ? i18n("Unknown Person") : person));
headerFileLabel->setText(i18n("Conversation With %1").arg(person.isEmpty() ? i18n("Unknown Person") : person));
item->insertHeaderWidget(0,headerFileLabel);
connect(headerFileLabel, TQT_SIGNAL(leftClickedURL()), TQT_SLOT(slotOpen()));
}
@ -881,12 +881,12 @@ void SearchDlg::insertResult(BeagleSearch::beagle_result_struct *result,int inde
{
TQLabel *headerLabel = new TQLabel(item);
headerLabel->setText(i18n("From"));
headerLabel->setAlignment(headerLabel->tqalignment() | TQt::SingleLine);
headerLabel->setAlignment(headerLabel->alignment() | TQt::SingleLine);
item->insertHeaderWidget(1,headerLabel);
KerryLabel *headerFileLabel = new KerryLabel(item);
headerFileLabel->setText(homepage);
headerFileLabel->setAlignment(headerFileLabel->tqalignment() | TQt::SingleLine);
headerFileLabel->setAlignment(headerFileLabel->alignment() | TQt::SingleLine);
headerFileLabel->setURL(homepage);
item->insertHeaderWidget(2,headerFileLabel);
connect(headerFileLabel, TQT_SIGNAL(leftClickedURL(const TQString&)), TQT_SLOT(slotOpenURL(const TQString&)));
@ -898,19 +898,19 @@ void SearchDlg::insertResult(BeagleSearch::beagle_result_struct *result,int inde
TQString install_time_str = takeProperty("fixme:install_time", _properties);
if (!install_time_str.isEmpty())
{
properties=properties+i18n("Installed on: %1").tqarg(KGlobal::locale()->formatDateTime(datetimeFromString(install_time_str),false))+"<br>";
properties=properties+i18n("Installed on: %1").arg(KGlobal::locale()->formatDateTime(datetimeFromString(install_time_str),false))+"<br>";
}
TQString install_size_str = takeProperty("fixme:contents_byte_count", _properties);
if (!install_size_str.isEmpty())
{
properties=properties+i18n("Installed size: %1").tqarg(formatBytes(install_size_str))+"<br>";
properties=properties+i18n("Installed size: %1").arg(formatBytes(install_size_str))+"<br>";
}
TQString download_size_str = takeProperty("fixme:size", _properties);
if (!download_size_str.isEmpty())
{
properties=properties+i18n("Download size: %1").tqarg(formatBytes(download_size_str))+"<br>";
properties=properties+i18n("Download size: %1").arg(formatBytes(download_size_str))+"<br>";
}
BeagleSearch::PropertyList::iterator it;
@ -965,7 +965,7 @@ void SearchDlg::insertResult(BeagleSearch::beagle_result_struct *result,int inde
TQLabel *headerLabel = new TQLabel(item);
headerLabel->setText(i18n("In Folder"));
headerLabel->setAlignment(headerLabel->tqalignment() | TQt::SingleLine);
headerLabel->setAlignment(headerLabel->alignment() | TQt::SingleLine);
item->insertHeaderWidget(1,headerLabel);
KerryLabel *headerDirLabel = new KerryLabel(item);
@ -982,7 +982,7 @@ void SearchDlg::insertResult(BeagleSearch::beagle_result_struct *result,int inde
TQDateTime datetime;
datetime.setTime_t(result->last_index_time);
title = i18n("Last modified: %1").tqarg(KGlobal::locale()->formatDateTime(datetime,false));
title = i18n("Last modified: %1").arg(KGlobal::locale()->formatDateTime(datetime,false));
item->setDescriptionText("<qt>"+title+"</qt>");
TQString properties;
@ -1028,7 +1028,7 @@ void SearchDlg::insertResult(BeagleSearch::beagle_result_struct *result,int inde
TQLabel *headerLabel = new TQLabel(item);
headerLabel->setText(i18n("In Folder"));
headerLabel->setAlignment(headerLabel->tqalignment() | TQt::SingleLine);
headerLabel->setAlignment(headerLabel->alignment() | TQt::SingleLine);
item->insertHeaderWidget(1,headerLabel);
KerryLabel *headerDirLabel = new KerryLabel(item);
@ -1055,7 +1055,7 @@ void SearchDlg::insertResult(BeagleSearch::beagle_result_struct *result,int inde
else {
TQDateTime datetime;
datetime.setTime_t(result->last_index_time);
title = i18n("Last modified: %1").tqarg(KGlobal::locale()->formatDateTime(datetime,false));
title = i18n("Last modified: %1").arg(KGlobal::locale()->formatDateTime(datetime,false));
}
item->setDescriptionText("<qt>"+title+"</qt>");
@ -1086,7 +1086,7 @@ void SearchDlg::insertResult(BeagleSearch::beagle_result_struct *result,int inde
connect(buttonGo, TQT_SIGNAL(leftClickedURL()), TQT_SLOT(slotOpenDir()));
}
item->score->setText(i18n("<p align=\"center\">Score: %1</p>").tqarg(result->score,0,'f',1));
item->score->setText(i18n("<p align=\"center\">Score: %1</p>").arg(result->score,0,'f',1));
tableHits->insertItem(item,index);
}
@ -1450,7 +1450,7 @@ void SearchDlg::searchFinished()
tableHits->clear();
HitWidget* item = new HitWidget(TQString(), TQString());
TQLabel *headerLabel = new TQLabel(item);
headerLabel->setText(i18n("No results for \"%1\" were found.").tqarg(current_query.get()));
headerLabel->setText(i18n("No results for \"%1\" were found.").arg(current_query.get()));
item->insertHeaderWidget(0,headerLabel);
item->setIcon("messagebox_warning");

@ -189,7 +189,7 @@
<property name="text">
<string>Results &lt;b&gt;%1 through %2 of %3&lt;/b&gt; are shown.</string>
</property>
<property name="tqalignment">
<property name="alignment">
<set>AlignVCenter</set>
</property>
</widget>
@ -357,7 +357,7 @@
<property name="text">
<string>Everything</string>
</property>
<property name="tqalignment">
<property name="alignment">
<set>AlignVCenter</set>
</property>
</widget>
@ -368,7 +368,7 @@
<property name="text">
<string>Applications</string>
</property>
<property name="tqalignment">
<property name="alignment">
<set>AlignVCenter</set>
</property>
</widget>
@ -379,7 +379,7 @@
<property name="text">
<string>Contacts</string>
</property>
<property name="tqalignment">
<property name="alignment">
<set>AlignVCenter</set>
</property>
</widget>
@ -390,7 +390,7 @@
<property name="text">
<string>Office Documents</string>
</property>
<property name="tqalignment">
<property name="alignment">
<set>AlignVCenter</set>
</property>
</widget>
@ -401,7 +401,7 @@
<property name="text">
<string>Conversations</string>
</property>
<property name="tqalignment">
<property name="alignment">
<set>AlignVCenter</set>
</property>
</widget>
@ -412,7 +412,7 @@
<property name="text">
<string>Images</string>
</property>
<property name="tqalignment">
<property name="alignment">
<set>AlignVCenter</set>
</property>
</widget>
@ -423,7 +423,7 @@
<property name="text">
<string>Media</string>
</property>
<property name="tqalignment">
<property name="alignment">
<set>AlignVCenter</set>
</property>
</widget>
@ -434,7 +434,7 @@
<property name="text">
<string>Web Pages</string>
</property>
<property name="tqalignment">
<property name="alignment">
<set>AlignVCenter</set>
</property>
</widget>
@ -445,7 +445,7 @@
<property name="text">
<string>File/Path Name</string>
</property>
<property name="tqalignment">
<property name="alignment">
<set>AlignVCenter</set>
</property>
</widget>
@ -519,7 +519,7 @@
<property name="text">
<string>Type</string>
</property>
<property name="tqalignment">
<property name="alignment">
<set>AlignVCenter</set>
</property>
</widget>
@ -530,7 +530,7 @@
<property name="text">
<string>Date</string>
</property>
<property name="tqalignment">
<property name="alignment">
<set>AlignVCenter</set>
</property>
</widget>
@ -541,7 +541,7 @@
<property name="text">
<string>Name</string>
</property>
<property name="tqalignment">
<property name="alignment">
<set>WordBreak|AlignVCenter</set>
</property>
</widget>
@ -552,7 +552,7 @@
<property name="text">
<string>Relevance</string>
</property>
<property name="tqalignment">
<property name="alignment">
<set>AlignVCenter</set>
</property>
</widget>
@ -626,7 +626,7 @@
<property name="text">
<string>Any Date</string>
</property>
<property name="tqalignment">
<property name="alignment">
<set>AlignVCenter</set>
</property>
</widget>
@ -637,7 +637,7 @@
<property name="text">
<string>Today</string>
</property>
<property name="tqalignment">
<property name="alignment">
<set>AlignVCenter</set>
</property>
</widget>
@ -648,7 +648,7 @@
<property name="text">
<string>Since Yesterday</string>
</property>
<property name="tqalignment">
<property name="alignment">
<set>AlignVCenter</set>
</property>
</widget>
@ -659,7 +659,7 @@
<property name="text">
<string>This Week</string>
</property>
<property name="tqalignment">
<property name="alignment">
<set>AlignVCenter</set>
</property>
</widget>
@ -670,7 +670,7 @@
<property name="text">
<string>This Month</string>
</property>
<property name="tqalignment">
<property name="alignment">
<set>AlignVCenter</set>
</property>
</widget>
@ -681,7 +681,7 @@
<property name="text">
<string>This Year</string>
</property>
<property name="tqalignment">
<property name="alignment">
<set>AlignVCenter</set>
</property>
</widget>
@ -849,14 +849,14 @@
<slot access="public" specifier="">update()</slot>
<slot access="public" specifier="">update(int,int,int,int)</slot>
<slot access="public" specifier="">update(const QRect&amp;)</slot>
<slot access="public" specifier="">tqrepaint()</slot>
<slot access="public" specifier="">tqrepaint(bool)</slot>
<slot access="public" specifier="">tqrepaint(int,int,int,int)</slot>
<slot access="public" specifier="">tqrepaint(int,int,int,int,bool)</slot>
<slot access="public" specifier="">tqrepaint(const QRect&amp;)</slot>
<slot access="public" specifier="">tqrepaint(const QRect&amp;,bool)</slot>
<slot access="public" specifier="">tqrepaint(const QRegion&amp;)</slot>
<slot access="public" specifier="">tqrepaint(const QRegion&amp;,bool)</slot>
<slot access="public" specifier="">repaint()</slot>
<slot access="public" specifier="">repaint(bool)</slot>
<slot access="public" specifier="">repaint(int,int,int,int)</slot>
<slot access="public" specifier="">repaint(int,int,int,int,bool)</slot>
<slot access="public" specifier="">repaint(const QRect&amp;)</slot>
<slot access="public" specifier="">repaint(const QRect&amp;,bool)</slot>
<slot access="public" specifier="">repaint(const QRegion&amp;)</slot>
<slot access="public" specifier="">repaint(const QRegion&amp;,bool)</slot>
<slot access="public" specifier="">show()</slot>
<slot access="public" specifier="">hide()</slot>
<slot access="public" specifier="">setShown(bool)</slot>
@ -921,7 +921,7 @@
<slot access="private" specifier="">setTextWorkaround(const QString&amp;)</slot>
<property type="CString">name</property>
<property type="Bool">enabled</property>
<property type="Rect">tqgeometry</property>
<property type="Rect">geometry</property>
<property type="SizePolicy">sizePolicy</property>
<property type="Size">minimumSize</property>
<property type="Size">maximumSize</property>
@ -950,7 +950,7 @@
<property type="Bool">frame</property>
<property type="EchoMode">echoMode</property>
<property type="Int">cursorPosition</property>
<property type="Alignment">tqalignment</property>
<property type="Alignment">alignment</property>
<property type="Bool">dragEnabled</property>
<property type="Bool">readOnly</property>
<property type="String">inputMask</property>
@ -995,14 +995,14 @@
<slot access="public" specifier="">update()</slot>
<slot access="public" specifier="">update(int,int,int,int)</slot>
<slot access="public" specifier="">update(const QRect&amp;)</slot>
<slot access="public" specifier="">tqrepaint()</slot>
<slot access="public" specifier="">tqrepaint(bool)</slot>
<slot access="public" specifier="">tqrepaint(int,int,int,int)</slot>
<slot access="public" specifier="">tqrepaint(int,int,int,int,bool)</slot>
<slot access="public" specifier="">tqrepaint(const QRect&amp;)</slot>
<slot access="public" specifier="">tqrepaint(const QRect&amp;,bool)</slot>
<slot access="public" specifier="">tqrepaint(const QRegion&amp;)</slot>
<slot access="public" specifier="">tqrepaint(const QRegion&amp;,bool)</slot>
<slot access="public" specifier="">repaint()</slot>
<slot access="public" specifier="">repaint(bool)</slot>
<slot access="public" specifier="">repaint(int,int,int,int)</slot>
<slot access="public" specifier="">repaint(int,int,int,int,bool)</slot>
<slot access="public" specifier="">repaint(const QRect&amp;)</slot>
<slot access="public" specifier="">repaint(const QRect&amp;,bool)</slot>
<slot access="public" specifier="">repaint(const QRegion&amp;)</slot>
<slot access="public" specifier="">repaint(const QRegion&amp;,bool)</slot>
<slot access="public" specifier="">show()</slot>
<slot access="public" specifier="">hide()</slot>
<slot access="public" specifier="">setShown(bool)</slot>
@ -1036,7 +1036,7 @@
<slot access="private" specifier="">slotSettingsChanged(int)</slot>
<property type="CString">name</property>
<property type="Bool">enabled</property>
<property type="Rect">tqgeometry</property>
<property type="Rect">geometry</property>
<property type="SizePolicy">sizePolicy</property>
<property type="Size">minimumSize</property>
<property type="Size">maximumSize</property>

Loading…
Cancel
Save