license: remove FSF postal address from boiler plate license text
[pulseview.git] / pv / data / decode / annotation.cpp
index 9b07efbc5f2844724fb91cbcd1dc18149e8dce60..e47f8f03732ca82929ae6489755f4089f3519665 100644 (file)
@@ -14,8 +14,7 @@
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
 extern "C" {
@@ -25,7 +24,7 @@ extern "C" {
 #include <cassert>
 #include <vector>
 
-#include "annotation.h"
+#include "annotation.hpp"
 
 namespace pv {
 namespace data {
@@ -43,7 +42,7 @@ Annotation::Annotation(const srd_proto_data *const pdata) :
        format_ = pda->ann_class;
 
        const char *const *annotations = (char**)pda->ann_text;
-       while(*annotations) {
+       while (*annotations) {
                annotations_.push_back(QString::fromUtf8(*annotations));
                annotations++;
        }