diff options
author | George Hazan <george.hazan@gmail.com> | 2013-09-15 13:47:52 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-09-15 13:47:52 +0000 |
commit | d25e5bf2e92d4d588f40d177fd1aadb2c73fdcae (patch) | |
tree | 0ffa88814bf34473eafbfc4bb7354caf2f310c9e /plugins/Popup/src/main.cpp | |
parent | d5abdd61330f42bc19500867a801af7a2221a203 (diff) |
- forward declarations removed;
- code cleaning;
git-svn-id: http://svn.miranda-ng.org/main/trunk@6073 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Popup/src/main.cpp')
-rw-r--r-- | plugins/Popup/src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Popup/src/main.cpp b/plugins/Popup/src/main.cpp index 880d92c0c3..58d9c1ba94 100644 --- a/plugins/Popup/src/main.cpp +++ b/plugins/Popup/src/main.cpp @@ -258,7 +258,7 @@ static int ModulesLoaded(WPARAM,LPARAM) (CallService(MS_HPP_GETVERSION, 0, 0) >= PLUGIN_MAKE_VERSION(1,5,0,112));
//check if MText plugin is installed
if (MText.Register) {
- htuText = MText.Register("Popup Plus/Text", MTEXT_FANCY_DEFAULT);
+ htuText = MText.Register("Popup Plus/Text", MTEXT_FANCY_DEFAULT);
htuTitle = MText.Register("Popup Plus/Title",MTEXT_FANCY_DEFAULT);
}
else htuTitle = htuText = NULL;
|