Please enable JavaScript to use RhodeCode Enterprise
##// END OF EJS Templates
Jani Honkonen
- Thu, 15 Mar 2012 11:12:32
Show More
0
src/barchart/qbarseries.cpp
src/barchart/qbarseries.cpp
+1
0
@@
-224,6
+224,7
bool QBarSeries::separatorsVisible()
224
224
bool QBarSeries :: setModel ( QAbstractItemModel * model )
225
225
{
226
226
m_model = model ;
227
return true ;
227
228
}
228
229
229
230
void QBarSeries :: setModelMappingCategories ( int modelColumn )
0
src/piechart/qpieseries.cpp
src/piechart/qpieseries.cpp
+2
0
@@
-565,6
+565,8
bool QPieSeries::setModel(QAbstractItemModel* model)
565
565
connect ( m_model , SIGNAL ( rowsInserted ( QModelIndex , int , int )), this , SLOT ( modelDataAdded ( QModelIndex , int , int )));
566
566
connect ( m_model , SIGNAL ( rowsRemoved ( QModelIndex , int , int )), this , SLOT ( modelDataRemoved ( QModelIndex , int , int )));
567
567
}
568
569
return true ;
568
570
}
569
571
570
572
void QPieSeries :: setModelMapping ( int modelValuesLine , int modelLabelsLine , Qt :: Orientation orientation )
0
src/splinechart/qsplineseries.cpp
src/splinechart/qsplineseries.cpp
+1
0
@@
-141,6
+141,7
bool QSplineSeries::setModel(QAbstractItemModel* model)
141
141
{
142
142
QXYSeries :: setModel ( model );
143
143
// calculateControlPoints();
144
return true ;
144
145
}
145
146
146
147
void QSplineSeries :: setModelMapping ( int modelX , int modelY , Qt :: Orientation orientation )
0
src/src.pro
src/src.pro
+2
-1
@@
-4,6
+4,7
DESTDIR = $$CHART_BUILD_LIB_DIR
4
4
TEMPLATE = lib
5
5
QT += core \
6
6
gui
7
win32: LIBS += User32.lib
7
8
CONFIG += debug_and_release
8
9
CONFIG(debug, debug|release):TARGET = QtCommercialChartd
9
10
SOURCES += \
@@
-79,7
+80,7
for(file, PUBLIC_HEADERS) {
79
80
class = $$split(class,' ')
80
81
class = $$replace(class,' ',' ' )
81
82
class = $$ member ( class , 0 )
82
command = " echo \"$${ LITERAL_HASH } include \\\ "$$ name\\\ "\" > $$CHART_BUILD_PUBLIC_HEADER_DIR/$$class"
83
command = "echo $${LITERAL_HASH}include \"$$name\" > $$CHART_BUILD_PUBLIC_HEADER_DIR/$$class"
83
84
PUBLIC_QT_HEADERS += $$ CHART_BUILD_PUBLIC_HEADER_DIR / $$ class
84
85
system ( $$ command )
85
86
}
0
src/xychart/qxyseries.cpp
src/xychart/qxyseries.cpp
+1
0
@@
-290,6
+290,7
bool QXYSeries::setModel(QAbstractItemModel* model) {
290
290
connect ( m_model , SIGNAL ( dataChanged ( QModelIndex , QModelIndex )), this , SLOT ( modelUpdated ( QModelIndex , QModelIndex )));
291
291
connect ( m_model , SIGNAL ( rowsInserted ( QModelIndex , int , int )), this , SLOT ( modelDataAdded ( QModelIndex , int , int )));
292
292
connect ( m_model , SIGNAL ( rowsRemoved ( QModelIndex , int , int )), this , SLOT ( modelDataRemoved ( QModelIndex , int , int )));
293
return true ;
293
294
}
294
295
295
296
void QXYSeries :: setModelMapping ( int modelX , int modelY , Qt :: Orientation orientation )
Site-wide shortcuts
/
Use quick search box
g h
Goto home page
g g
Goto my private gists page
g G
Goto my public gists page
g 0-9
Goto bookmarked items from 0-9
n r
New repository page
n g
New gist page
Repositories
g s
Goto summary page
g c
Goto changelog page
g f
Goto files page
g F
Goto files page with file search activated
g p
Goto pull requests page
g o
Goto repository settings
g O
Goto repository access permissions settings
t s
Toggle sidebar on some pages