Commit 5c696b1607e7b7b4d6cbbb9a77d5dc76cfe742b8

Authored by Daniel McEwen
1 parent 5baa65a0

Purge underscored header file barriers

Change-Id: I9e57f3cf9d687531fd7c38139f39f4b61e5c2812
examples/image-scaling-irregular-grid/grid-flags.h
1   -#ifndef __DALI_DEMO_GRID_FLAGS_H_
2   -#define __DALI_DEMO_GRID_FLAGS_H_
  1 +#ifndef DALI_DEMO_GRID_FLAGS_H
  2 +#define DALI_DEMO_GRID_FLAGS_H
3 3 /*
4 4 * Copyright (c) 2014 Samsung Electronics Co., Ltd.
5 5 *
... ... @@ -197,7 +197,8 @@ private:
197 197 unsigned mHighestUsedRow;
198 198 };
199 199  
200   -} /* namespace Demo */
201   -} /* namespace Dali */
  200 +} // namespace Demo
202 201  
203   -#endif /* __DALI_DEMO_GRID_FLAGS_H_ */
  202 +} // namespace Dali
  203 +
  204 +#endif // DALI_DEMO_GRID_FLAGS_H
... ...
examples/text-label-emojis/emoji-strings.h
1   -#ifndef __DALI_DEMO_EMOJI_STRINGS_H__
2   -#define __DALI_DEMO_EMOJI_STRINGS_H__
  1 +#ifndef DALI_DEMO_EMOJI_STRINGS_H
  2 +#define DALI_DEMO_EMOJI_STRINGS_H
3 3  
4 4 /*
5 5 * Copyright (c) 2015 Samsung Electronics Co., Ltd.
... ... @@ -100,4 +100,4 @@ namespace EmojiStrings
100 100  
101 101 } // EmojiStrings
102 102  
103   -#endif // __DALI_DEMO_EMOJI_STRINGS_H__
  103 +#endif // DALI_DEMO_EMOJI_STRINGS_H
... ...
shared/multi-language-strings.h
1   -#ifndef __DALI_DEMO_MULTI_LANGUAGE_STRINGS_H__
2   -#define __DALI_DEMO_MULTI_LANGUAGE_STRINGS_H__
  1 +#ifndef DALI_DEMO_MULTI_LANGUAGE_STRINGS_H
  2 +#define DALI_DEMO_MULTI_LANGUAGE_STRINGS_H
3 3  
4 4 /*
5 5 * Copyright (c) 2015 Samsung Electronics Co., Ltd.
... ... @@ -227,4 +227,4 @@ namespace MultiLanguageStrings
227 227  
228 228 } // MultiLanguageStrings
229 229  
230   -#endif // __DALI_DEMO_MULTI_LANGUAGE_STRINGS_H__
  230 +#endif // DALI_DEMO_MULTI_LANGUAGE_STRINGS_H
... ...
shared/view.h
1   -#ifndef __DALI_DEMO_HELPER_VIEW_H__
2   -#define __DALI_DEMO_HELPER_VIEW_H__
  1 +#ifndef DALI_DEMO_HELPER_VIEW_H
  2 +#define DALI_DEMO_HELPER_VIEW_H
3 3  
4 4 /*
5 5 * Copyright (c) 2014 Samsung Electronics Co., Ltd.
... ... @@ -177,4 +177,4 @@ Dali::Toolkit::TextLabel CreateToolBarLabel( const std::string& text )
177 177  
178 178 } // DemoHelper
179 179  
180   -#endif // __DALI_DEMO_HELPER_VIEW_H__
  180 +#endif // DALI_DEMO_HELPER_VIEW_H
... ...