diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
commit | df8e67b86696f691708af8592d86282b09bab011 (patch) | |
tree | ca90d734c9011d457a42f0a7004a9507b2c2c1bd /src/k3bdataprojectinterface.h | |
parent | 33881ea4441221b1ca0789a72c4c7249d923a0df (diff) | |
download | k3b-df8e67b86696f691708af8592d86282b09bab011.tar.gz k3b-df8e67b86696f691708af8592d86282b09bab011.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k3b@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/k3bdataprojectinterface.h')
-rw-r--r-- | src/k3bdataprojectinterface.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/k3bdataprojectinterface.h b/src/k3bdataprojectinterface.h index c4edfd8..0cc9229 100644 --- a/src/k3bdataprojectinterface.h +++ b/src/k3bdataprojectinterface.h @@ -41,16 +41,16 @@ class K3bDataProjectInterface : public K3bProjectInterface /** * Create a new folder with name @p name in the folder with the - * absolute path @p tqparent. + * absolute path @p parent. * * \return true if the folder was created successfully, false if - * an item with the same name already exists or the tqparent + * an item with the same name already exists or the parent * directory could not be found. * * Example: createFolder( "test", "/foo/bar" ) will create the * folder /foo/bar/test. */ - bool createFolder( const TQString& name, const TQString& tqparent ); + bool createFolder( const TQString& name, const TQString& parent ); /** * Add urls to a specific folder in the project. @@ -58,9 +58,9 @@ class K3bDataProjectInterface : public K3bProjectInterface * Example: addUrl( "test.txt", "/foo/bar" ) will add the file test.txt * to folder /foo/bar. */ - void addUrl( const TQString& url, const TQString& tqparent ); + void addUrl( const TQString& url, const TQString& parent ); - void addUrls( const TQStringList& urls, const TQString& tqparent ); + void addUrls( const TQStringList& urls, const TQString& parent ); /** * Remove an item |