Nanook.TheGhost.ProjectSong.UpdateQbChanges C# (CSharp) Method

UpdateQbChanges() public method

public UpdateQbChanges ( ) : void
return void
        public void UpdateQbChanges()
        {
            if (this.qbChanged)
            {
                //sets data in the QB.PAK
                this.SongQb.Title = this.Title;
                this.SongQb.Artist = this.Artist;
                if (_project.Defaults.YearMode != DefaultSettingModeBlank.Blank)
                    this.SongQb.Year = this.Year;
                else
                    this.SongQb.Year = string.Empty;
                this.SongQb.GuitarVolume = this.GuitarVolume;
                this.SongQb.SongVolume = this.SongVolume;
                this.SongQb.OriginalArtist = this.OriginalArtist;
                this.SongQb.Singer = this.Singer;
                this.SongQb.HopoMeasure = this.Notes.HoPoMeasure;
                this.SongQb.RhythmTrack = false;
                this.SongQb.RemoveUseCoopNoteTracks();
                this.SongQb.ZeroOffsets();
            }
        }