fix url_data initialization order

This commit is contained in:
Daniel Micay 2012-09-17 18:54:07 -04:00
parent b1dd8d6997
commit 94217c8a57
1 changed files with 2 additions and 2 deletions

View File

@ -116,8 +116,8 @@ static void find_urls(VteTerminal *vte) {
const vte_char_attributes attr = g_array_index(attributes, vte_char_attributes, token + pos - content);
url_list.push_back(url_data{g_match_info_fetch(info, 0),
attr.row - first_row,
attr.column});
attr.column,
attr.row - first_row});
g_match_info_next(info, &error);
}