added deleteProperty to FbWindow
This commit is contained in:
parent
37c6602f07
commit
a88d3b39ad
2 changed files with 42 additions and 36 deletions
|
@ -389,6 +389,10 @@ void FbWindow::changeProperty(Atom property, Atom type,
|
|||
data, nelements);
|
||||
}
|
||||
|
||||
void FbWindow::deleteProperty(Atom property) {
|
||||
XDeleteProperty(display(), m_window, property);
|
||||
}
|
||||
|
||||
int FbWindow::screenNumber() const {
|
||||
return m_screen_num;
|
||||
}
|
||||
|
|
|
@ -137,6 +137,8 @@ public:
|
|||
unsigned char *data,
|
||||
int nelements);
|
||||
|
||||
void deleteProperty(Atom property);
|
||||
|
||||
void setBufferPixmap(Pixmap pm);
|
||||
|
||||
std::string textProperty(Atom property) const;
|
||||
|
|
Loading…
Reference in a new issue