Browse Source

Small fix since icon path was not being returned correctly

matthew.gertner@gmail.com 14 years ago
parent
commit
217fb86901
1 changed files with 1 additions and 1 deletions
  1. 1 1
      components/src/windows/nsDesktopEnvironmentWin.cpp

+ 1 - 1
components/src/windows/nsDesktopEnvironmentWin.cpp

@@ -522,7 +522,7 @@ nsresult nsDesktopEnvironment::GetIconPath(nsAString& _retval)
   NS_ENSURE_SUCCESS(rv, rv);
   
   nsAutoString iconPath;
-  rv = iconFile->GetPath(iconPath);
+  rv = iconFile->GetPath(_retval);
   NS_ENSURE_SUCCESS(rv, rv);
 
   return NS_OK;