The State of (in)Consistency of Save Confirmation Dialogs

2005-01-26 Thread Steven Garrity
While the file chooser has gotten lots of attention and improved dramatically in the last year, it's little cousin the save confirmation alert dialog has been sadly neglected. I've compiled a bit of an inventory what is consistent and what is inconsistent about the save confirmation dialogs in

Re: recent documents & desktop

2005-01-26 Thread Kent Nyberg
ons 2005-01-26 klockan 20:42 + skrev Nuno Donato: > Hi there > > I had a very simple but IMHO pratical idea for some improvements (and > innovations) on the desktop. > i dont know about all of you, but my home folder usually has some > folders, which in turn have lots of subfolders and so on..

recent documents & desktop

2005-01-26 Thread Nuno Donato
Hi there I had a very simple but IMHO pratical idea for some improvements (and innovations) on the desktop. i dont know about all of you, but my home folder usually has some folders, which in turn have lots of subfolders and so on. i do this to make this the most organized possible. The downsi

Re: smproxy/save.c

2005-01-26 Thread Ray Strode
Hi, > const gchar *path; > ... > ... > > path = getenv ("SM_SAVE_DIR"); > if (!path) > path = gnome_util_home_file (NULL); (needs to be freed) > if (!path) > path = g_get_home_dir (); > if (!path) > path = getenv ("HOME"); > if (!path) > pat

smproxy/save.c

2005-01-26 Thread Kjartan Maraas
Hi. There's a leak in WriteProxyFile() in smproxy/save.c const gchar *path; ... ... path = getenv ("SM_SAVE_DIR"); if (!path) path = gnome_util_home_file (NULL); (needs to be freed) if (!path) path = g_get_home_dir (); if (!path) path = getenv ("HOME

Re: The wonders of cut'n'paste code

2005-01-26 Thread Chipzz
On Tue, 25 Jan 2005, Matthias Clasen wrote: > From: Matthias Clasen <[EMAIL PROTECTED]> > Subject: Re: The wonders of cut'n'paste code > > On Tue, 2005-01-25 at 16:12 -0500, Owen Taylor wrote: > > On Tue, 2005-01-25 at 13:55 -0500, Havoc Pennington wrote: > > > On Tue, 2005-01-25 at 18:34 +0100, K