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

Collapse All | Expand All

(-)code/boson/bosonufoglwidget.cpp (-2 / +2 lines)
Lines 35-45 Link Here
35
	BoUfoRealProfiling()
35
	BoUfoRealProfiling()
36
	{
36
	{
37
	}
37
	}
38
	void BoUfoRealProfiling::push(const QString& name)
38
	void push(const QString& name)
39
	{
39
	{
40
		boProfiling->push(name);
40
		boProfiling->push(name);
41
	}
41
	}
42
	void BoUfoRealProfiling::pop()
42
	void pop()
43
	{
43
	{
44
		boProfiling->pop();
44
		boProfiling->pop();
45
	}
45
	}
(-)code/boson/qlistviewitemnumber.cpp (-1 / +1 lines)
Lines 51-57 Link Here
51
QString QListViewItemNumberPrefix::key(int column, bool ascending) const
51
QString QListViewItemNumberPrefix::key(int column, bool ascending) const
52
{
52
{
53
 QString k = QListViewItemNumber::key(column, ascending);
53
 QString k = QListViewItemNumber::key(column, ascending);
54
 QRegExp r("^[0-9]+(\.[0-9]+)?");
54
 QRegExp r("^[0-9]+(\\.[0-9]+)?");
55
 if (r.search(k) >= 0) {
55
 if (r.search(k) >= 0) {
56
	return r.cap(0);
56
	return r.cap(0);
57
 }
57
 }

Return to bug 134701