You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 11, 2018. It is now read-only.
On archlinux the compilation fail with :
/tmp/finalterm-git/src/finalterm/src/LineView.vala:48.3-48.50: warning: Clutter.BoxLayout.set_expand has been deprecated since 1.12
/tmp/finalterm-git/src/finalterm/src/LineView.vala:49.3-49.48: warning: Clutter.BoxLayout.set_fill has been deprecated since 1.12
/tmp/finalterm-git/src/finalterm/src/TerminalView.vala:676.4-676.14: warning: Clutter.Actor.paint has been deprecated since 1.12
/tmp/finalterm-git/src/finalterm/src/TerminalView.vala:561.2-561.28: error: overriding method LineContainer.get_adjustments' is incompatible with base methodMx.Scrollable.get_adjustments': incompatible type of parameter 1.
public void get_adjustments(out unowned Mx.Adjustment? hadjustment, out unowned Mx.Adjustment? vadjustment) {
^^^^^^^^^^^^^^^^^^^^^^^^^^^
Compilation failed: 1 error(s), 3 warning(s)
make[2]: *** [vala.stamp] Fehler 1
make[1]: *** [CMakeFiles/finalterm.dir/all] Fehler 2
make: *** [all] Fehler 2
If i remove the '?' from src/TerminalView.val l575 that's work.
From :public void get_adjustments(out unowned Mx.Adjustment? hadjustment, out unowned Mx.Adjustment? vadjustment) {
To public void get_adjustments(out unowned Mx.Adjustment hadjustment, out unowned Mx.Adjustment vadjustment) {
In archlinux we use git version of mx that maybe the error.
The text was updated successfully, but these errors were encountered:
Hi,
On archlinux the compilation fail with :
/tmp/finalterm-git/src/finalterm/src/LineView.vala:48.3-48.50: warning: Clutter.BoxLayout.set_expand has been deprecated since 1.12
/tmp/finalterm-git/src/finalterm/src/LineView.vala:49.3-49.48: warning: Clutter.BoxLayout.set_fill has been deprecated since 1.12
/tmp/finalterm-git/src/finalterm/src/TerminalView.vala:676.4-676.14: warning: Clutter.Actor.paint has been deprecated since 1.12
/tmp/finalterm-git/src/finalterm/src/TerminalView.vala:561.2-561.28: error: overriding method
LineContainer.get_adjustments' is incompatible with base method
Mx.Scrollable.get_adjustments': incompatible type of parameter 1.public void get_adjustments(out unowned Mx.Adjustment? hadjustment, out unowned Mx.Adjustment? vadjustment) {
^^^^^^^^^^^^^^^^^^^^^^^^^^^
Compilation failed: 1 error(s), 3 warning(s)
make[2]: *** [vala.stamp] Fehler 1
make[1]: *** [CMakeFiles/finalterm.dir/all] Fehler 2
make: *** [all] Fehler 2
If i remove the '?' from src/TerminalView.val l575 that's work.
From :public void get_adjustments(out unowned Mx.Adjustment? hadjustment, out unowned Mx.Adjustment? vadjustment) {
To public void get_adjustments(out unowned Mx.Adjustment hadjustment, out unowned Mx.Adjustment vadjustment) {
In archlinux we use git version of mx that maybe the error.
The text was updated successfully, but these errors were encountered: