Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'intern/ghost/intern/GHOST_DisplayManagerX11.h')
-rw-r--r--intern/ghost/intern/GHOST_DisplayManagerX11.h48
1 files changed, 24 insertions, 24 deletions
diff --git a/intern/ghost/intern/GHOST_DisplayManagerX11.h b/intern/ghost/intern/GHOST_DisplayManagerX11.h
index c4d2b6dbb0a..61b4578cac3 100644
--- a/intern/ghost/intern/GHOST_DisplayManagerX11.h
+++ b/intern/ghost/intern/GHOST_DisplayManagerX11.h
@@ -50,18 +50,18 @@ public:
* Constructor.
*/
GHOST_DisplayManagerX11(
- GHOST_SystemX11 *system
- );
+ GHOST_SystemX11 *system
+ );
/**
* Returns the number of display devices on this system.
* @param numDisplays The number of displays on this system.
* @return Indication of success.
*/
- GHOST_TSuccess
+ GHOST_TSuccess
getNumDisplays(
- GHOST_TUns8& numDisplays
- ) const;
+ GHOST_TUns8& numDisplays
+ ) const;
/**
* Returns the number of display settings for this display device.
@@ -69,11 +69,11 @@ public:
* @param setting The number of settings of the display device with this index.
* @return Indication of success.
*/
- GHOST_TSuccess
+ GHOST_TSuccess
getNumDisplaySettings(
- GHOST_TUns8 display,
- GHOST_TInt32& numSettings
- ) const;
+ GHOST_TUns8 display,
+ GHOST_TInt32& numSettings
+ ) const;
/**
* Returns the current setting for this display device.
@@ -82,12 +82,12 @@ public:
* @param setting The setting of the display device with this index.
* @return Indication of success.
*/
- GHOST_TSuccess
+ GHOST_TSuccess
getDisplaySetting(
- GHOST_TUns8 display,
- GHOST_TInt32 index,
- GHOST_DisplaySetting& setting
- ) const;
+ GHOST_TUns8 display,
+ GHOST_TInt32 index,
+ GHOST_DisplaySetting& setting
+ ) const;
/**
* Returns the current setting for this display device.
@@ -95,11 +95,11 @@ public:
* @param setting The current setting of the display device with this index.
* @return Indication of success.
*/
- GHOST_TSuccess
+ GHOST_TSuccess
getCurrentDisplaySetting(
- GHOST_TUns8 display,
- GHOST_DisplaySetting& setting
- ) const;
+ GHOST_TUns8 display,
+ GHOST_DisplaySetting& setting
+ ) const;
/**
* Changes the current setting for this display device.
@@ -107,15 +107,15 @@ public:
* @param setting The current setting of the display device with this index.
* @return Indication of success.
*/
- GHOST_TSuccess
+ GHOST_TSuccess
setCurrentDisplaySetting(
- GHOST_TUns8 display,
- const GHOST_DisplaySetting& setting
- );
+ GHOST_TUns8 display,
+ const GHOST_DisplaySetting& setting
+ );
-private :
+private:
- GHOST_SystemX11 * m_system;
+ GHOST_SystemX11 *m_system;
};