From eb188905e81e2bdc8a0c8756c51e8c9c1df3080c Mon Sep 17 00:00:00 2001 From: "benjamin%smedbergs.us" Date: Tue, 18 Jul 2006 15:20:16 +0000 Subject: [PATCH] bug 315570 r=benjamin Add a reusable autocomplete result type that doesn't depend on Mork. Components can easily provide autocomplete results using this interface and implementation. This patch fixes some style and portability nits. Original committer: brettw%gmail.com Original revision: 1.3 Original date: 2005/11/09 21:27:51 git-svn-id: svn://10.0.0.236/trunk@202477 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/toolkit/components/places/src/nsNavHistory.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mozilla/toolkit/components/places/src/nsNavHistory.h b/mozilla/toolkit/components/places/src/nsNavHistory.h index cb0e1f1f465..78e8c4c296f 100644 --- a/mozilla/toolkit/components/places/src/nsNavHistory.h +++ b/mozilla/toolkit/components/places/src/nsNavHistory.h @@ -268,6 +268,7 @@ protected: }; +class AutoCompleteIntermediateResultSet; // nsNavHistory @@ -277,7 +278,7 @@ class nsNavHistory : nsSupportsWeakReference, public nsIBrowserHistory, public nsIAutoCompleteSearch { - friend struct AutoCompleteIntermediateResultSet; + friend class AutoCompleteIntermediateResultSet; public: nsNavHistory();