mirror of https://github.com/bsnes-emu/bsnes.git
25 lines
318 B
C++
25 lines
318 B
C++
namespace phoenix {
|
|
|
|
void pLineEdit::setBackgroundColor(Color color) {
|
|
}
|
|
|
|
void pLineEdit::setEditable(bool editable) {
|
|
}
|
|
|
|
void pLineEdit::setForegroundColor(Color color) {
|
|
}
|
|
|
|
void pLineEdit::setText(string text) {
|
|
}
|
|
|
|
string pLineEdit::text() {
|
|
}
|
|
|
|
void pLineEdit::constructor() {
|
|
}
|
|
|
|
void pLineEdit::destructor() {
|
|
}
|
|
|
|
}
|