mirror of
https://github.com/rodamaral/lsnes.git
synced 2025-04-02 10:42:15 -04:00
43 lines
668 B
C++
Executable file
43 lines
668 B
C++
Executable file
void pListView::append(const lstring &text) {
|
|
}
|
|
|
|
void pListView::autoSizeColumns() {
|
|
}
|
|
|
|
bool pListView::checked(unsigned row) {
|
|
}
|
|
|
|
void pListView::modify(unsigned row, const lstring &text) {
|
|
}
|
|
|
|
void pListView::reset() {
|
|
}
|
|
|
|
bool pListView::selected() {
|
|
return false;
|
|
}
|
|
|
|
unsigned pListView::selection() {
|
|
return 0;
|
|
}
|
|
|
|
void pListView::setCheckable(bool checkable) {
|
|
}
|
|
|
|
void pListView::setChecked(unsigned row, bool checked) {
|
|
}
|
|
|
|
void pListView::setHeaderText(const lstring &text) {
|
|
}
|
|
|
|
void pListView::setHeaderVisible(bool visible) {
|
|
}
|
|
|
|
void pListView::setSelected(bool selected) {
|
|
}
|
|
|
|
void pListView::setSelection(unsigned row) {
|
|
}
|
|
|
|
void pListView::constructor() {
|
|
}
|