diff options
author | Josh Blum | 2011-10-24 10:02:55 -0700 |
---|---|---|
committer | Josh Blum | 2011-10-24 10:02:55 -0700 |
commit | e9f4580047977cd319d1991060e2d78f15f27f8f (patch) | |
tree | b8f37089cf2988eeee9b5739d4d59c42059c897a | |
parent | 645ad4ae1423926f0fb893bbb5d3463b2c17623a (diff) | |
download | gnuradio-e9f4580047977cd319d1991060e2d78f15f27f8f.tar.gz gnuradio-e9f4580047977cd319d1991060e2d78f15f27f8f.tar.bz2 gnuradio-e9f4580047977cd319d1991060e2d78f15f27f8f.zip |
qtgui: fixed typo for name of export define
This was a typo, but it was ok before the library fubar
because the define was explicitly set.
Now that things are more automatic,
it needs to follow convention.
-rw-r--r-- | gr-qtgui/include/gr_qtgui_api.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-qtgui/include/gr_qtgui_api.h b/gr-qtgui/include/gr_qtgui_api.h index 65033a093..c39add1e8 100644 --- a/gr-qtgui/include/gr_qtgui_api.h +++ b/gr-qtgui/include/gr_qtgui_api.h @@ -24,7 +24,7 @@ #include <gruel/attributes.h> -#ifdef libgnuradio_qtgui_EXPORTS +#ifdef gnuradio_qtgui_EXPORTS # define GR_QTGUI_API __GR_ATTR_EXPORT #else # define GR_QTGUI_API __GR_ATTR_IMPORT |