Skip to content

Commit 8d156b2

Browse files
committedDec 27, 2020
Correction ListStore column
1 parent f08416d commit 8d156b2

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed
 

‎.vscode/launch.json

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "(gdb) Lancer",
9+
"type": "cppdbg",
10+
"request": "launch",
11+
"program": "${workspaceFolder}/build/com.github.phase1geo.minder",
12+
"args": [],
13+
"stopAtEntry": false,
14+
"cwd": "${workspaceFolder}",
15+
"environment": [],
16+
"externalConsole": false,
17+
"MIMode": "gdb",
18+
"setupCommands": [
19+
{
20+
"description": "Activer l'impression en mode Pretty pour gdb",
21+
"text": "-enable-pretty-printing",
22+
"ignoreFailures": true
23+
}
24+
]
25+
}
26+
]
27+
}

‎src/MainWindow.vala

+1-1
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@ public class MainWindow : ApplicationWindow {
561561
_search_entry.width_chars = 60;
562562
_search_entry.search_changed.connect( on_search_change );
563563

564-
_search_items = new Gtk.ListStore( 4, typeof(string), typeof(string), typeof(Node), typeof(Connection) );
564+
_search_items = new Gtk.ListStore( 5, typeof(string), typeof(string), typeof(Node), typeof(Connection), typeof(string) );
565565

566566
/* Create the treeview */
567567
_search_list = new TreeView.with_model( _search_items );

0 commit comments

Comments
 (0)
Please sign in to comment.