Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 592436 | Differences between
and this patch

Collapse All | Expand All

(-)a/src/stc/scintilla/src/Editor.cxx (-2 / +3 lines)
Lines 16-21 Link Here
16
#include <map>
16
#include <map>
17
#include <algorithm>
17
#include <algorithm>
18
#include <memory>
18
#include <memory>
19
#include <cmath>
19
20
20
#include "Platform.h"
21
#include "Platform.h"
21
22
Lines 5841-5849 void Editor::GoToLine(int lineNo) { Link Here
5841
}
5842
}
5842
5843
5843
static bool Close(Point pt1, Point pt2) {
5844
static bool Close(Point pt1, Point pt2) {
5844
	if (abs(pt1.x - pt2.x) > 3)
5845
	if (fabs(pt1.x - pt2.x) > 3)
5845
		return false;
5846
		return false;
5846
	if (abs(pt1.y - pt2.y) > 3)
5847
	if (fabs(pt1.y - pt2.y) > 3)
5847
		return false;
5848
		return false;
5848
	return true;
5849
	return true;
5849
}
5850
}

Return to bug 592436