Commit 7b9ad2ae authored by Brian Mattern's avatar Brian Mattern
Browse files

use correct element types for MWMHints

From the XChangeProperty man page:
"If the specified format is 32, the property data must be a long array."
parent 520c79ab
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -61,11 +61,11 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

/* Motif window hints */
typedef struct _mwmhints {
	CARD32 flags;
	CARD32 functions;
	CARD32 decorations;
	INT32 input_mode;
	CARD32 status;
	unsigned long flags;
	unsigned long functions;
	unsigned long decorations;
	long input_mode;
	unsigned long status;
} MWMHints;

enum win_type {