Skip to content

Commit

Permalink
Merge pull request #1039 from ra3xdh/cauer_fix
Browse files Browse the repository at this point in the history
Fix hardcoded version in Cauer LC filter
  • Loading branch information
ra3xdh authored Nov 1, 2024
2 parents 51dc531 + beaed25 commit 32c5c12
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion qucs-filter/qf_filter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
* (at your option) any later version. *
* *
***************************************************************************/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif

#include <cmath>
#include <iostream>
#include <sstream>
Expand Down Expand Up @@ -271,7 +275,7 @@ QString filter::to_qucs() {
wires += QString("<%1 200 %1 260 \"\" 0 0 0>\n").arg(x);

QString s = "";
s += "<Qucs Schematic 24.2.1>\n";
s += QString("<Qucs Schematic " PACKAGE_VERSION ">\n");
s += "<Components>\n";
s += compos;

Expand Down

0 comments on commit 32c5c12

Please sign in to comment.