Fixed indentation
This commit is contained in:
parent
dc80ab4023
commit
d78758ab7d
|
@ -391,7 +391,8 @@ public:
|
|||
link_const_iterator endNeighbor(const String&) const;
|
||||
|
||||
//! Get the server address
|
||||
const NetworkAddress& getSynergyAddress() const;
|
||||
const NetworkAddress&
|
||||
getSynergyAddress() const;
|
||||
|
||||
//! Get the screen options
|
||||
/*!
|
||||
|
@ -399,7 +400,8 @@ public:
|
|||
if the screen is unknown and an empty collection if there are no
|
||||
options.
|
||||
*/
|
||||
const ScreenOptions* getOptions(const String& name) const;
|
||||
const ScreenOptions*
|
||||
getOptions(const String& name) const;
|
||||
|
||||
//! Check for lock to screen action
|
||||
/*!
|
||||
|
@ -424,13 +426,15 @@ public:
|
|||
/*!
|
||||
Reads a configuration from a stream. Throws XConfigRead on error.
|
||||
*/
|
||||
friend std::istream& operator>>(std::istream&, Config&);
|
||||
friend std::istream&
|
||||
operator>>(std::istream&, Config&);
|
||||
|
||||
//! Write configuration
|
||||
/*!
|
||||
Writes a configuration to a stream.
|
||||
*/
|
||||
friend std::ostream& operator<<(std::ostream&, const Config&);
|
||||
friend std::ostream&
|
||||
operator<<(std::ostream&, const Config&);
|
||||
|
||||
//! Get direction name
|
||||
/*!
|
||||
|
|
Loading…
Reference in New Issue