gecko-dev/content/xbl
disttsc%bart.nl de797f152e This could leave you with a dangling pointer:
nsCStringKey key(nsPromiseFlatCString(aRef).get());

because the nsPromiseFlatCString object will go out of scope,
so do this instead:

  nsPromiseFlatCString flat(aRef);
  nsCStringKey key(flat.get());

sr=scc
2001-03-08 13:13:42 +00:00
..
builtin add keybindings to input, textarea, editor for alt-backspace (undo); r=akkana; sr=kin 2001-03-02 14:23:04 +00:00
public Fix for 62783. r=danm, sr=waterson 2001-03-07 01:46:13 +00:00
src This could leave you with a dangling pointer: 2001-03-08 13:13:42 +00:00
.cvsignore ignore generated Makefiles 2000-01-11 21:52:27 +00:00
Makefile.in Refactor some of the window key handler and add drag and drop handlers to the window root. Also move the html bindings (and platform bindings) to res, removing the chome dependency. a=hyatt. 2000-11-29 06:01:33 +00:00
makefile.win start building xbl/builtin (a=hyatt). 2000-11-29 05:12:40 +00:00