s/CARD32/Q_UINT32/g

svn path=/trunk/kdebase/kwin/; revision=53252
This commit is contained in:
Michael Matz 2000-06-14 21:39:07 +00:00
parent fb68b5bf38
commit 9bf0f3010b
2 changed files with 4 additions and 4 deletions

View file

@ -47,10 +47,10 @@ public:
m_client = c;
}
virtual void changeDesktop(CARD32 desktop) {
virtual void changeDesktop(Q_UINT32 desktop) {
m_client->setDesktop( desktop );
}
virtual void changeState(CARD32 state, CARD32 /* mask */) {
virtual void changeState(Q_UINT32 state, Q_UINT32 /* mask */) {
// What's the mask ?
// Warning: this code was written by David who has no clue about window managers :/

View file

@ -56,8 +56,8 @@ public:
}
~RootInfo() {}
void changeNumberOfDesktops(CARD32 n) { workspace->setNumberOfDesktops( n ); }
void changeCurrentDesktop(CARD32 d) { workspace->setCurrentDesktop( d ); }
void changeNumberOfDesktops(Q_UINT32 n) { workspace->setNumberOfDesktops( n ); }
void changeCurrentDesktop(Q_UINT32 d) { workspace->setCurrentDesktop( d ); }
void changeActiveWindow(Window w) {
::Client* c = workspace->findClient( (WId) w );
if ( c )