.cosmetics

git-svn-id: svn://ultimatepp.org/upp/trunk@10959 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2017-03-21 12:05:24 +00:00
parent 609c4314c0
commit aac8d2ed60
4 changed files with 3 additions and 5 deletions

View file

@ -120,7 +120,7 @@ struct ExpressionTyper {
};
ExpressionTyper::ExpressionTyper(const CppBase& codebase, const Parser& parser, const Vector<String>& xp)
: codebase(codebase), parser(parser), xp(xp)
: codebase(codebase), xp(xp), parser(parser)
{
scan_counter = 0;
context_type = parser.current_scope;

View file

@ -344,7 +344,6 @@ int TabBar::GetTabStackLR( int jd )
int nt = -1;
if ( HasCursor() ) {
int c = GetCursor();
int tc = GetCount();
if ( IsStacking() ) {
int c_stack = tabs[ c ].stack;

View file

@ -302,7 +302,6 @@ void TextCompareCtrl::Paint(Draw& draw)
}
int x = 0;
int a = StdFont().GetAscent();
for(int i = 0; i < hln.GetCount() - 1; ++i) {
Font fnt = font;
LineEdit::Highlight& h = hln[i];

View file

@ -71,8 +71,8 @@ private:
};
FindFileWindow::FindFileWindow(const Workspace& wspc, const String& actualPackage)
: wspc(wspc)
, actualPackage(actualPackage)
: actualPackage(actualPackage)
, wspc(wspc)
{
CtrlLayoutOKCancel(*this, "Find File");
Sizeable().Zoomable();