Rename ksocket and kcache

pull/1/head
Timothy Pearson 13 years ago
parent a60600ad66
commit 43f40ff715

@ -377,7 +377,7 @@
2004-06-14 Alexander Dymo <adymo@mksat.net> 2004-06-14 Alexander Dymo <adymo@mksat.net>
* Documentation plugin can show methods in index for Qt and Doxygen documentation catalogs. * Documentation plugin can show methods in index for Qt and Doxygen documentation catalogs.
* Implemented a dialog to run profiler (calltree + kcachegrind). * Implemented a dialog to run profiler (calltree + tdecachegrind).
2004-06-05 Jens Dagerbo <jens.dagerbo@swipnet.se> 2004-06-05 Jens Dagerbo <jens.dagerbo@swipnet.se>
* Fixed several ToolView related issues. Among other things, they should now * Fixed several ToolView related issues. Among other things, they should now

@ -204,7 +204,7 @@
<tocsect3 name="GtkScrollbar" url="gtk/gtkscrollbar.html"/> <tocsect3 name="GtkScrollbar" url="gtk/gtkscrollbar.html"/>
<tocsect3 name="GtkScrollbar" url="gtk/gtkscrollbar.html"/> <tocsect3 name="GtkScrollbar" url="gtk/gtkscrollbar.html"/>
<tocsect3 name="GtkSeparator" url="gtk/gtkseparator.html"/> <tocsect3 name="GtkSeparator" url="gtk/gtkseparator.html"/>
<tocsect3 name="GtkSocket" url="gtk/gtksocket.html"/> <tocsect3 name="GtkSocket" url="gtk/gttdesocket.html"/>
<tocsect3 name="GtkSpinButton" url="gtk/gtkspinbutton.html"/> <tocsect3 name="GtkSpinButton" url="gtk/gtkspinbutton.html"/>
<tocsect3 name="GtkStatusbar" url="gtk/gtkstatusbar.html"/> <tocsect3 name="GtkStatusbar" url="gtk/gtkstatusbar.html"/>
<tocsect3 name="GtkTable" url="gtk/gtktable.html"/> <tocsect3 name="GtkTable" url="gtk/gtktable.html"/>

@ -179,13 +179,13 @@ void ValgrindDialog::setKcExecutable( const TQString& ke )
{ {
TQString vUrl = ke; TQString vUrl = ke;
if ( vUrl.isEmpty() ) { if ( vUrl.isEmpty() ) {
vUrl = KStandardDirs::findExe( "kcachegrind" ); vUrl = KStandardDirs::findExe( "tdecachegrind" );
} }
if ( vUrl.isEmpty() ) { if ( vUrl.isEmpty() ) {
KMessageBox::sorry( this, i18n( "Could not find kcachegrind in your $PATH. Please make " KMessageBox::sorry( this, i18n( "Could not find tdecachegrind in your $PATH. Please make "
"sure it is installed properly." ), "sure it is installed properly." ),
i18n( "KCachegrind Not Found" ) ); i18n( "KCachegrind Not Found" ) );
w->kcExecutableEdit->setURL( "kcachegrind" ); w->kcExecutableEdit->setURL( "tdecachegrind" );
} else { } else {
w->kcExecutableEdit->setURL( vUrl ); w->kcExecutableEdit->setURL( vUrl );
} }

@ -45,7 +45,7 @@ public:
TQString ctParams() const; TQString ctParams() const;
void setCtParams( const TQString& params ); void setCtParams( const TQString& params );
// name and/or path to the kcachegrind executable // name and/or path to the tdecachegrind executable
TQString kcExecutable() const; TQString kcExecutable() const;
void setKcExecutable( const TQString& ke ); void setKcExecutable( const TQString& ke );

@ -332,7 +332,7 @@ void ValgrindPart::restorePartialProjectSession( const TQDomElement* el )
_lastCtExec = ctElem.attribute( "path", "" ); _lastCtExec = ctElem.attribute( "path", "" );
_lastCtParams = ctElem.attribute( "params", "" ); _lastCtParams = ctElem.attribute( "params", "" );
TQDomElement kcElem = el->namedItem( "kcachegrind" ).toElement(); TQDomElement kcElem = el->namedItem( "tdecachegrind" ).toElement();
_lastKcExec = kcElem.attribute( "path", "" ); _lastKcExec = kcElem.attribute( "path", "" );
} }
@ -354,7 +354,7 @@ void ValgrindPart::savePartialProjectSession( TQDomElement* el )
ctElem.setAttribute( "path", _lastCtExec ); ctElem.setAttribute( "path", _lastCtExec );
ctElem.setAttribute( "params", _lastCtParams ); ctElem.setAttribute( "params", _lastCtParams );
TQDomElement kcElem = domDoc.createElement( "kcachegrind" ); TQDomElement kcElem = domDoc.createElement( "tdecachegrind" );
kcElem.setAttribute( "path", _lastKcExec ); kcElem.setAttribute( "path", _lastKcExec );
el->appendChild( execElem ); el->appendChild( execElem );

Loading…
Cancel
Save