diff options
author | elektrahesse | 2010-09-16 18:24:53 +0200 |
---|---|---|
committer | elektrahesse | 2010-09-16 18:24:53 +0200 |
commit | 6485376d3ddc34e3a974dc2405b82bf5dab88a47 (patch) | |
tree | 7b9837d7223215563e745a5b376024d16b69647e /linden | |
parent | Moved all the variables to a struct to keep code more clean and added a check... (diff) | |
download | meta-impy-6485376d3ddc34e3a974dc2405b82bf5dab88a47.zip meta-impy-6485376d3ddc34e3a974dc2405b82bf5dab88a47.tar.gz meta-impy-6485376d3ddc34e3a974dc2405b82bf5dab88a47.tar.bz2 meta-impy-6485376d3ddc34e3a974dc2405b82bf5dab88a47.tar.xz |
Switched struct declaration to a more C++esque way... Aleric hit me with a stick :P
Diffstat (limited to 'linden')
-rw-r--r-- | linden/indra/newview/llchatbar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/newview/llchatbar.h b/linden/indra/newview/llchatbar.h index 135881f..5542d8a 100644 --- a/linden/indra/newview/llchatbar.h +++ b/linden/indra/newview/llchatbar.h | |||
@@ -46,7 +46,7 @@ class LLChatBarGestureObserver; | |||
46 | class LLComboBox; | 46 | class LLComboBox; |
47 | class LLSpinCtrl; | 47 | class LLSpinCtrl; |
48 | 48 | ||
49 | typedef struct { | 49 | struct CompletionHolder { |
50 | std::string left; | 50 | std::string left; |
51 | std::string right; | 51 | std::string right; |
52 | std::string match; | 52 | std::string match; |
@@ -54,7 +54,7 @@ typedef struct { | |||
54 | std::string last_txt; | 54 | std::string last_txt; |
55 | std::string last_match; | 55 | std::string last_match; |
56 | int current_index; | 56 | int current_index; |
57 | } CompletionHolder; | 57 | }; |
58 | 58 | ||
59 | class LLChatBar | 59 | class LLChatBar |
60 | : public LLPanel | 60 | : public LLPanel |