rename the following methods:

tqfind find
tqreplace replace
tqcontains contains


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kwin-style-crystal@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
v3.5.13-sru
tpearson 13 years ago
parent 6b63f133e6
commit 529c1ea243

@ -222,7 +222,7 @@ void CrystalConfig::load(KConfig*)
dialog_->buttonTheme->setCurrentItem(config_->readNumEntry("ButtonTheme",8));
dialog_->updateTime->setValue(config_->readNumEntry("RepaintTime",200));
button=(TQRadioButton*)dialog_->repaintMode->tqfind(config_->readNumEntry("RepaintMode",1));
button=(TQRadioButton*)dialog_->repaintMode->find(config_->readNumEntry("RepaintMode",1));
if (button)button->setChecked(true);
dialog_->active_blur->setValue(config_->readNumEntry("ActiveBlur",0));

@ -68,7 +68,7 @@ public:
CCrystalTooltip(TQWidget *widget,CrystalClient *vc):TQToolTip(widget),client(vc) {}
virtual void maybeTip(const TQPoint& p)
{
if (client->titlebar_->tqgeometry().tqcontains(p))
if (client->titlebar_->tqgeometry().contains(p))
{
tip(client->titlebar_->tqgeometry(),client->caption());
}
@ -961,7 +961,7 @@ CrystalButton* CrystalClient::addButtons(TQBoxLayout *tqlayout, const TQString&
if (current)
{
tqlayout->addWidget(current);
if (tqlayout->tqfindWidget(current)==0)current->setFirstLast(true,false);
if (tqlayout->findWidget(current)==0)current->setFirstLast(true,false);
}
lastone=current;
}
@ -972,7 +972,7 @@ CrystalButton* CrystalClient::addButtons(TQBoxLayout *tqlayout, const TQString&
void CrystalClient::activeChange()
{
Repaint();
if (isActive()) ::factory->clients.at(::factory->clients.tqfind(this));
if (isActive()) ::factory->clients.at(::factory->clients.find(this));
}
void CrystalClient::captionChange()
@ -1182,7 +1182,7 @@ void CrystalClient::ClientWindows(Window* v_frame,Window* v_wrapper,Window *v_cl
void CrystalClient::mouseDoubleClickEvent(TQMouseEvent *e)
{
if (/*(titlebar_->tqgeometry().tqcontains(e->pos()))&&*/(e->button()==Qt::LeftButton)) titlebarDblClickOperation();
if (/*(titlebar_->tqgeometry().contains(e->pos()))&&*/(e->button()==Qt::LeftButton)) titlebarDblClickOperation();
else {
TQMouseEvent me(TQEvent::MouseButtonPress,e->pos(),e->button(),e->state());
processMousePressEvent(&me);

@ -109,7 +109,7 @@ void nVIDIAEmbedder::embed( const char *name )
TQString codename( basename );
TQImage image( name );
codename = codename.tqreplace( TQRegExp("[^a-zA-Z0-9]"), "_" );
codename = codename.replace( TQRegExp("[^a-zA-Z0-9]"), "_" );
stream << "static const TQRgb " << codename << "_data[] = {" << endl << "\t";
stream.setf( TQTextStream::hex | TQTextStream::right );
@ -209,7 +209,7 @@ void nVIDIAEmbedder::writeIndex()
stream << "\t\t\tm_inst = NULL;\n";
stream << "\t\t}\n\n";
stream << "\t\tTQImage *image( const TQString &name ) const {\n";
stream << "\t\t\treturn db->tqfind( name );\n";
stream << "\t\t\treturn db->find( name );\n";
stream << "\t\t}\n\n";
stream << "\t}; // class nVIDIAImageDb\n\n";
stream << "\tnVIDIAImageDb *nVIDIAImageDb::m_inst = NULL;\n\n";

Loading…
Cancel
Save