Fix for linux
This commit is contained in:
parent
89e9889865
commit
a7ff509dce
@ -337,8 +337,10 @@ namespace Novell.CASA.GUI
|
||||
|
||||
void bttnReplaceAll_Clicked(object sender, EventArgs e)
|
||||
{
|
||||
TreePath[] treePaths = tvResults.Selection.GetSelectedRows();
|
||||
TreeModel model;
|
||||
TreeIter iter;
|
||||
TreePath[] treePaths = tvResults.Selection.GetSelectedRows(out model);
|
||||
|
||||
|
||||
if (entryNewValue.Text == null || entryNewValue.Text.Length == 0)
|
||||
{
|
||||
|
@ -344,8 +344,10 @@ namespace Novell.CASA.GUI
|
||||
void DoImport()
|
||||
{
|
||||
// get selected rows
|
||||
TreePath[] treePaths = tvConflicts.Selection.GetSelectedRows();
|
||||
TreeModel model;
|
||||
TreeIter iter;
|
||||
TreePath[] treePaths = tvConflicts.Selection.GetSelectedRows(out model);
|
||||
|
||||
|
||||
if (treePaths.Length > 0)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user