X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fplugins%2Fcdripper%2Fcdripwindow.C;h=0116664f45facf4e1f31a81d690e64d75193e91e;hb=fd7da506ec769c911c35264b49bff28f408a02f9;hp=94dd5b4e28f2998bf9392768af9fa9de99f9b667;hpb=361dbd9de4e6e4143ea0cac5daa89b30685a4c70;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/plugins/cdripper/cdripwindow.C b/cinelerra-5.1/plugins/cdripper/cdripwindow.C index 94dd5b4e..0116664f 100644 --- a/cinelerra-5.1/plugins/cdripper/cdripwindow.C +++ b/cinelerra-5.1/plugins/cdripper/cdripwindow.C @@ -2,21 +2,21 @@ /* * CINELERRA * Copyright (C) 2008 Adam Williams - * + * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. - * + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - * + * */ #include "cdripwindow.h" @@ -26,10 +26,10 @@ #include CDRipWindow::CDRipWindow(CDRipMain *cdripper, int x, int y) - : BC_Window(_(PROGRAM_NAME ": CD Ripper"), + : BC_Window(_(PROGRAM_NAME ": CD Ripper"), x, y, 450, 230, 450, 230, 0, 0, 1) -{ - this->cdripper = cdripper; +{ + this->cdripper = cdripper; } CDRipWindow::~CDRipWindow() @@ -40,14 +40,14 @@ void CDRipWindow::create_objects() { int y = 10, x = 10; add_tool(new BC_Title(x, y, _("Select the range to transfer:"))); y += 25; - add_tool(new BC_Title(x, y, _("Track"))); x += 70; + add_tool(new BC_Title(x, y, _("Track:"))); x += 70; add_tool(new BC_Title(x, y, _("Min."))); x += 70; add_tool(new BC_Title(x, y, _("Sec."))); x += 100; - add_tool(new BC_Title(x, y, _("Track"))); x += 70; + add_tool(new BC_Title(x, y, _("Track:"))); x += 70; add_tool(new BC_Title(x, y, _("Min."))); x += 70; add_tool(new BC_Title(x, y, _("Sec."))); x += 100; - + x = 10; y += 25; add_tool(track1 = new CDRipTextValue(this, &(cdripper->track1), x, y, 50)); x += 70; @@ -55,7 +55,7 @@ void CDRipWindow::create_objects() x += 70; add_tool(sec1 = new CDRipTextValue(this, &(cdripper->sec1), x, y, 50)); x += 100; - + add_tool(track2 = new CDRipTextValue(this, &(cdripper->track2), x, y, 50)); x += 70; add_tool(min2 = new CDRipTextValue(this, &(cdripper->min2), x, y, 50)); @@ -97,7 +97,7 @@ CDRipTextValue::CDRipTextValue(CDRipWindow *window, int *output, int x, int y, i CDRipTextValue::~CDRipTextValue() { } - + int CDRipTextValue::handle_event() { *output = atol(get_text());