Home
last modified time | relevance | path

Searched refs:end_column (Results 1 – 4 of 4) sorted by relevance

/glogg/glogg/src/
H A Dselection.h
H A Dselection.cpp
/glogg/src/
H A Dselection.h34 Portion( int line, int start_column, int end_column ) in Portion() argument
35 { line_ = line; startColumn_ = start_column; endColumn_ = end_column; } in Portion()
64 void selectPortion( int line, int start_column, int end_column );
91 int* start_column, int* end_column ) const;
H A Dselection.cpp42 void Selection::selectPortion( int line, int start_column, int end_column ) in selectPortion() argument
49 selectedPartial_.startColumn = qMin ( start_column, end_column ); in selectPortion()
50 selectedPartial_.endColumn = qMax ( start_column, end_column ); in selectPortion()
96 bool Selection::getPortionForLine( int line, int* start_column, int* end_column ) const in getPortionForLine()
100 *end_column = selectedPartial_.endColumn; in getPortionForLine()