aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-06-30 12:56:39 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-06-30 12:56:39 +0200
commitb69f9e363f213875987f9a4c30896e9fe59b6128 (patch)
tree1be51c45fc1dd49c50f3a0b4b317478743b2e374
parent58f52c8a15ed61a538f7930484524ba4948adc8d (diff)
downloadarctica-mediaplayer-b69f9e363f213875987f9a4c30896e9fe59b6128.tar.gz
arctica-mediaplayer-b69f9e363f213875987f9a4c30896e9fe59b6128.tar.bz2
arctica-mediaplayer-b69f9e363f213875987f9a4c30896e9fe59b6128.zip
arctica-mediaplayer: Use correct package name Arctica::Telekinesis::Application::Gtk3.
-rwxr-xr-xbin/arctica-mediaplayer6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/arctica-mediaplayer b/bin/arctica-mediaplayer
index 710a8d6..b0866ce 100755
--- a/bin/arctica-mediaplayer
+++ b/bin/arctica-mediaplayer
@@ -58,7 +58,7 @@ use strict;
use Data::Dumper;
use Cwd 'abs_path';
use Arctica::Core::eventInit qw(genARandom BugOUT);
-use Arctica::Telekinesis::Application::AppGtk3;
+use Arctica::Telekinesis::Application::Gtk3;
my $ACO = Arctica::Core::eventInit->new({
app_name=>'arctica-mediaplayer',
@@ -79,7 +79,7 @@ if (-f $fullpath) {
}
print "FUP:\t$fullpath\nLID:\t$link_id\n";
#die;
-my $TeKiGtk3 = Arctica::Telekinesis::Application::AppGtk3->new($ACO,{
+my $TeKiGtk3 = Arctica::Telekinesis::Application::Gtk3->new($ACO,{
services => {
multimedia => {
conf => {
@@ -143,7 +143,7 @@ $main_window->resize(600,300);
$main_window->show_all();
-# We'll wan't to start this within the AppGtk3 thingie... but for now it can stay out here...
+# We'll wan't to start this within the Application::Gtk3 thingie... but for now it can stay out here...
my $timeout = Glib::Timeout->add(50, sub {$TeKiGtk3->check_n_send();return 1;});