diff options
-rw-r--r-- | doc/api/HowToAddApplicationTemplates.dox | 2 | ||||
-rw-r--r-- | doc/api/HowToAddPlugins.dox | 2 | ||||
-rw-r--r-- | languages/cpp/cppsupportpart.cpp | 2 | ||||
-rw-r--r-- | languages/java/javasupportpart.cpp | 2 | ||||
-rw-r--r-- | src/profileengine/lib/profileengine.h | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/doc/api/HowToAddApplicationTemplates.dox b/doc/api/HowToAddApplicationTemplates.dox index 21917b11..f53ce4f8 100644 --- a/doc/api/HowToAddApplicationTemplates.dox +++ b/doc/api/HowToAddApplicationTemplates.dox @@ -135,7 +135,7 @@ if [ `id -u` = 0 ]; then # we are root so install the template into the global kde directory kde_dir=`tde-config --prefix` else - # we are a user so install it into $HOME/.kde/share/apps/kdevappwizard directory + # we are a user so install it into $HOME/.trinity/share/apps/kdevappwizard directory kde_dir=`tde-config --localprefix` echo "Note: It would be better to install as root. Press CTRL+C to abort" fi diff --git a/doc/api/HowToAddPlugins.dox b/doc/api/HowToAddPlugins.dox index 70176630..c4fc2f96 100644 --- a/doc/api/HowToAddPlugins.dox +++ b/doc/api/HowToAddPlugins.dox @@ -195,7 +195,7 @@ void GDBBreakpointWidget::savePartialProjectSession(QDomElement* el) </pre></code> Note that the .kdevses is related to a project. User settings equal for all projects don't -belong to here. You save them to ~/.kde/share/config/tdeveloprc via class KConfig of the +belong to here. You save them to ~/.trinity/share/config/tdeveloprc via class KConfig of the tdecore library. Document your part in the way described at \ref howToDocument (doc/api/HowToDocument.dox file). diff --git a/languages/cpp/cppsupportpart.cpp b/languages/cpp/cppsupportpart.cpp index 204b5a69..4f0f19d6 100644 --- a/languages/cpp/cppsupportpart.cpp +++ b/languages/cpp/cppsupportpart.cpp @@ -2101,7 +2101,7 @@ bool CppSupportPart::isValidSource( const TQString& fileName ) const return /*project() && project() ->isProjectFile( path ) &&*/ ( isSource( path ) || isHeader( path ) ) - && !TQFile::exists( fileInfo.dirPath( true ) + "/.kdev_ignore" ); + && !TQFile::exists( fileInfo.dirPath( true ) + "/.tdev_ignore" ); } TQString CppSupportPart::formatModelItem( const CodeModelItem *item, bool shortDescription ) diff --git a/languages/java/javasupportpart.cpp b/languages/java/javasupportpart.cpp index 5e936422..4d7025e8 100644 --- a/languages/java/javasupportpart.cpp +++ b/languages/java/javasupportpart.cpp @@ -787,7 +787,7 @@ void JavaSupportPart::removeWithReferences( const TQString & fileName ) bool JavaSupportPart::isValidSource( const TQString& fileName ) const { TQFileInfo fileInfo( fileName ); - return fileExtensions().contains( fileInfo.extension() ) && !TQFile::exists(fileInfo.dirPath(true) + "/.kdev_ignore"); + return fileExtensions().contains( fileInfo.extension() ) && !TQFile::exists(fileInfo.dirPath(true) + "/.tdev_ignore"); } TQString JavaSupportPart::formatModelItem( const CodeModelItem *item, bool shortDescription ) diff --git a/src/profileengine/lib/profileengine.h b/src/profileengine/lib/profileengine.h index 6404e48f..eb32a8fa 100644 --- a/src/profileengine/lib/profileengine.h +++ b/src/profileengine/lib/profileengine.h @@ -119,7 +119,7 @@ public: KURL::List resourcesRecursive(const TQString &profileName, const TQString &nameFilter); /**Adds a resource for the profile. Resource will be copied to the user profile directory - (like $HOME/.kde/share/apps/tdevelop/profiles/...). + (like $HOME/.trinity/share/apps/tdevelop/profiles/...). @param profileName A name of the profile. @param url The url to a file to copy as a profile resource.*/ void addResource(const TQString &profileName, const KURL &url); |