~do-win/do/test-paths

« back to all changes in this revision

Viewing changes to Do.Platform.Windows/src/Do.Universe/ApplicationItemSource.cs

  • Committer: Hardeep S
  • Date: 2009-06-23 05:58:49 UTC
  • Revision ID: ootz0rz@gmail.com-20090623055849-foc5oodact5ckt3b
changes to just get it to compile...

Show diffs side-by-side

added added

removed removed

Lines of Context:
164
164
        /// </returns>
165
165
        static IEnumerable<string> GetDesktopFileDirectories ()
166
166
        {
167
 
                        // get the path to the "all users" start menu
168
 
                        string commonStartMenu = Path.Combine (Environment.GetFolderPath (Environment.SpecialFolder.CommonApplicationData), "Microsoft");
169
 
                        commonStartMenu = Path.Combine (commonStartMenu, "Windows");
170
 
                        commonStartMenu = Path.Combine (commonStartMenu, "Start Menu");
171
 
 
172
167
            return new [] {
173
168
                Environment.GetFolderPath(Environment.SpecialFolder.Desktop),
174
 
                Environment.GetFolderPath(Environment.SpecialFolder.StartMenu),
175
 
                                Environment.GetFolderPath(Environment.SpecialFolder.Programs),
176
 
                                commonStartMenu,
 
169
                Environment.GetFolderPath(Environment.SpecialFolder.StartMenu)
177
170
            };
178
171
        }
179
172
    }