* src/frontends/qt4/QMathMatrixDialog.C:

* src/kbmap.C:
* src/LaTeXFeatures.C:
* src/text.C: remove superfluous "return" statements

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16483 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Michael Schmitt 2007-01-03 21:51:10 +00:00
parent ae8872c23c
commit 04b4634213
4 changed files with 0 additions and 7 deletions

View File

@ -104,8 +104,6 @@ void LaTeXFeatures::getAvailable()
packages_.push_back(name);
}
}
return;
}

View File

@ -74,8 +74,6 @@ void QMathMatrixDialog::columnsChanged(int)
h_align_str[nx] = '\0';
halignED->setText(h_align_str);
return;
}

View File

@ -281,11 +281,9 @@ void kb_keymap::defkey(kb_sequence * seq,
newone->func = func;
newone->func.origin = FuncRequest::KEYBOARD;
newone->table.reset();
return;
} else {
newone->table.reset(new kb_keymap);
newone->table->defkey(seq, func, r + 1);
return;
}
}

View File

@ -1706,7 +1706,6 @@ void LyXText::setCursorFromCoordinates(LCursor & cur, int const x, int const y)
<< endl;
setCursor(cur, pit, pos, true, bound);
return;
}