31 lines
785 B
Diff
31 lines
785 B
Diff
--- wmx-6pl1/Client.C.64b 2006-02-16 11:07:31.909626084 -0600
|
|
+++ wmx-6pl1/Client.C 2006-02-16 11:08:02.499956573 -0600
|
|
@@ -663,7 +663,7 @@
|
|
}
|
|
|
|
|
|
-int Client::getAtomProperty(Atom a, Atom type)
|
|
+size_t Client::getAtomProperty(Atom a, Atom type)
|
|
{
|
|
char **p, *x;
|
|
if (getProperty_aux(display(), m_window, a, type, 1L,
|
|
@@ -673,7 +673,7 @@
|
|
|
|
x = *p;
|
|
XFree((void *)p);
|
|
- return (int)x;
|
|
+ return (size_t)x;
|
|
}
|
|
|
|
|
|
--- wmx-6pl1/Client.h.64b 2006-02-16 11:07:37.465322869 -0600
|
|
+++ wmx-6pl1/Client.h 2006-02-16 11:08:19.883007902 -0600
|
|
@@ -184,7 +184,7 @@
|
|
WindowManager *const m_windowManager;
|
|
|
|
char *getProperty(Atom);
|
|
- int getAtomProperty(Atom, Atom);
|
|
+ size_t getAtomProperty(Atom, Atom);
|
|
int getIntegerProperty(Atom);
|
|
|
|
// accessors
|