Enable Reveal and Launch for WINCE. r=me, a=darin, b=342172

git-svn-id: svn://10.0.0.236/branches/MOZILLA_1_8_BRANCH@200732 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
dougt%meer.net
2006-06-23 21:36:25 +00:00
parent 74890a4355
commit 4fd11317f7

View File

@@ -2639,7 +2639,6 @@ nsLocalFile::SetPersistentDescriptor(const nsACString &aPersistentDescriptor)
NS_IMETHODIMP
nsLocalFile::Reveal()
{
#ifndef WINCE
// make sure mResolvedPath is set
nsresult rv = ResolveAndStat();
if (NS_FAILED(rv) && rv != NS_ERROR_FILE_NOT_FOUND)
@@ -2669,7 +2668,6 @@ nsLocalFile::Reveal()
explorerParams.get(),
NULL, SW_SHOWNORMAL) <= (HINSTANCE) 32)
return NS_ERROR_FAILURE;
#endif
return NS_OK;
}
@@ -2678,7 +2676,6 @@ nsLocalFile::Reveal()
NS_IMETHODIMP
nsLocalFile::Launch()
{
#ifndef WINCE
const nsString &path = mWorkingPath;
// use the app registry name to launch a shell execute....
@@ -2721,7 +2718,6 @@ nsLocalFile::Launch()
return NS_ERROR_FILE_EXECUTION_FAILED;
}
}
#endif
return NS_OK;
}