summaryrefslogtreecommitdiffstats
path: root/src/kreplacements/ShellContextMenu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kreplacements/ShellContextMenu.cpp')
-rwxr-xr-xsrc/kreplacements/ShellContextMenu.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kreplacements/ShellContextMenu.cpp b/src/kreplacements/ShellContextMenu.cpp
index 6be2532..e79b68c 100755
--- a/src/kreplacements/ShellContextMenu.cpp
+++ b/src/kreplacements/ShellContextMenu.cpp
@@ -246,7 +246,7 @@ void CShellContextMenu::SetObjects(const TQStringList &strList)
psfDesktop->ParseDisplayName (NULL, 0, (LPOLESTR)strList[0].ucs2(), NULL, &pidl, NULL);
- // now we need the tqparent IShellFolder interface of pidl, and the relative PIDL to that interface
+ // now we need the parent IShellFolder interface of pidl, and the relative PIDL to that interface
LPITEMIDLIST pidlItem = NULL; // relative pidl
SHBindToParentEx (pidl, IID_IShellFolder, (void **) &m_psfFolder, NULL);
free (pidlItem);
@@ -255,9 +255,9 @@ void CShellContextMenu::SetObjects(const TQStringList &strList)
SHGetMalloc (&lpMalloc);
lpMalloc->Free (pidl);
- // now we have the IShellFolder interface to the tqparent folder specified in the first element in strArray
+ // now we have the IShellFolder interface to the parent folder specified in the first element in strArray
// since we assume that all objects are in the same folder (as it's stated in the MSDN)
- // we now have the IShellFolder interface to every objects tqparent folder
+ // we now have the IShellFolder interface to every objects parent folder
IShellFolder * psfFolder = NULL;
nItems = strList.size ();
@@ -295,7 +295,7 @@ void CShellContextMenu::SetObjects(LPITEMIDLIST /*pidl*/)
m_pidlArray = NULL;
// full qualified PIDL is passed so we need
- // its tqparent IShellFolder interface and its relative PIDL to that
+ // its parent IShellFolder interface and its relative PIDL to that
LPITEMIDLIST pidlItem = NULL;
SHBindToParent ((LPCITEMIDLIST) pidl, IID_IShellFolder, (void **) &m_psfFolder, (LPCITEMIDLIST *) &pidlItem);