Skip to content

Commit

Permalink
header order
Browse files Browse the repository at this point in the history
  • Loading branch information
royshil committed Jul 29, 2023
1 parent bedaf91 commit 681d0ac
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/url-source.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@ You should have received a copy of the GNU General Public License along
with this program. If not, see <https://www.gnu.org/licenses/>
*/

#include "ui/RequestBuilder.h"
#include "ui/text-render-helper.h"
#include "request-data.h"
#include "plugin-support.h"

#include <stdlib.h>
#include <util/threading.h>
#include <util/platform.h>
#include <graphics/graphics.h>
#include <obs-module.h>
#include <obs-frontend-api.h>

#include "ui/RequestBuilder.h"
#include "ui/text-render-helper.h"
#include "request-data.h"
#include "plugin-support.h"

struct url_source_data {
obs_source_t *source;
struct url_source_request_data request_data;
Expand Down Expand Up @@ -181,7 +181,7 @@ static obs_properties_t *url_source_properties(void *data)
// Open the Request Builder dialog
RequestBuilder *builder = new RequestBuilder(
&(button_usd->request_data),
[=]() {
[&button_usd]() {
// Update the request data from the settings
obs_data_t *settings =
obs_source_get_settings(button_usd->source);
Expand Down

0 comments on commit 681d0ac

Please sign in to comment.