[Kazehakase-devel 935] Re: 表示してるページのテキスト取得アクション

Zurück zum Archiv-Index

Takuro Ashie ashie****@homa*****
2004年 3月 11日 (木) 11:27:47 JST


足永です.

On Thu, 11 Mar 2004 00:24:26 +0900
Hiroyuki Ikezoe <poinc****@ikezo*****> wrote:

> 表示してるページのテキストを取得するアクションをやっとこせ追加しました。
> 注:ソースじゃなくてあくまで表示されてるテキストです

うちの環境ではコンパイルエラーになります.

kz-mozembed.cの1671行目

	PRUint32 childcount = rootContent->GetChildCount();

ですが,Mozilla-1.5では

	NS_IMETHOD ChildCount(PRInt32& aResult) const = 0;

となってます.とりあえず

	nsresult rv;
	PRInt32 childcount;
	rv = rootContent->ChildCount(childcount);

としてコンパイルは通りました.
どのバージョンで変更されたかが分からないので,とりあえず

#if 1
	nsresult rv;
	PRInt32 childcount;
	rv = rootContent->ChildCount(childcount);
#else
	PRUint32 childcount = rootContent->GetChildCount();
#endif

としておきますので,修正していただけますか? > zoeさん



Kazehakase-devel メーリングリストの案内
Zurück zum Archiv-Index