Skip to content
This repository has been archived by the owner on Nov 11, 2018. It is now read-only.

Commit

Permalink
Update .desktop file categories; make erase_line_range private
Browse files Browse the repository at this point in the history
  • Loading branch information
p-e-w committed Jun 9, 2013
1 parent 55f6997 commit 911944b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion data/finalterm.desktop.in
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ Exec=finalterm
Icon=final-term
Terminal=false
Type=Application
Categories=Accessories;
Categories=GTK;Utility;TerminalEmulator;System;
2 changes: 1 addition & 1 deletion src/TerminalOutput.vala
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ public class TerminalOutput : Gee.ArrayList<OutputLine> {
erase_line_range(end_position.line, 0, end_position.column);
}

public void erase_line_range(int line, int start_position = 0, int end_position = -1) {
private void erase_line_range(int line, int start_position = 0, int end_position = -1) {
get(line).erase_range(start_position, end_position);
text_updated(line);
}
Expand Down

0 comments on commit 911944b

Please sign in to comment.