2ee14f4c14
* Code aligned to recent multiprotocol branch changes. * Fixed crash when Server filters IM_STATUS_SET messages and ContactLinker is NULL.
25 lines
490 B
C
25 lines
490 B
C
/*
|
|
* Copyright 2010, Oliver Ruiz Dorantes. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _CAYA_PREFERENCES_H
|
|
#define _CAYA_PREFERENCES_H
|
|
|
|
#include "PreferencesContainer.h"
|
|
|
|
typedef struct CayaPreferencesData
|
|
{
|
|
bool MoveToCurrentWorkspace;
|
|
bool ActivateWindow;
|
|
|
|
CayaPreferencesData()
|
|
: MoveToCurrentWorkspace(true),
|
|
ActivateWindow(true)
|
|
{
|
|
}
|
|
};
|
|
|
|
typedef PreferencesContainer<CayaPreferencesData> CayaPreferences;
|
|
|
|
#endif // _CAYA_PREFERENCES_H
|