0

私はこのチュートリアルに従っています。しかし、実行しようとすると、このエラーが発生し続けます。

    JS ERROR: !!!   Exception was: Error: Expected type utf8 for Argument 'argv' but got type 'number' (nil)
    JS ERROR: !!!     message = '"Expected type utf8 for Argument 'argv' but got type 'number' (nil)"'
    JS ERROR: !!!     fileName = '"main.js"'
    JS ERROR: !!!     lineNumber = '146'
    JS ERROR: !!!     stack = '"@main.js:146
"'
Error: Expected type utf8 for Argument 'argv' but got type 'number' (nil)

何が問題なのかよくわかりません。エラーは146行目で発生します。

Gtk.init(0、null);

使用されているコードはこちらから入手できます。

4

1 に答える 1

0

はい。バグです。パッチを適用したこのメッセージを見てください:https ://mail.gnome.org/archives/commits-list/2012-February/msg10213.html

Gtk.init(0,null);で変更する必要がありますGtk.init(null, null);

于 2013-03-15T08:38:23.507 に答える