aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/viewdefault.cpp3
-rw-r--r--src/viewdefault.h1
2 files changed, 3 insertions, 1 deletions
diff --git a/src/viewdefault.cpp b/src/viewdefault.cpp
index fdc1604..49ba7e8 100644
--- a/src/viewdefault.cpp
+++ b/src/viewdefault.cpp
@@ -69,6 +69,7 @@ void ViewDefault::beginTarget( const Bu::FString &sProfile,
69 bDispedTrg = false; 69 bDispedTrg = false;
70 iTotal = rTarget.getDepCount(); 70 iTotal = rTarget.getDepCount();
71 iCurrent = 0; 71 iCurrent = 0;
72 sTopTarget = rTarget.getOutputList().first();
72 } 73 }
73 iDepth++; 74 iDepth++;
74 75
@@ -87,7 +88,7 @@ void ViewDefault::drawTargetHdr( const Bu::FString &sProfile,
87 } 88 }
88 bFirst = false; 89 bFirst = false;
89 sio << C_BR_WHITE << " --- " << C_BR_CYAN << sProfile << " " 90 sio << C_BR_WHITE << " --- " << C_BR_CYAN << sProfile << " "
90 << rTarget.getOutputList().first() << C_BR_WHITE << " --- " 91 << sTopTarget << C_BR_WHITE << " --- "
91 << C_RESET << sio.nl; 92 << C_RESET << sio.nl;
92 } 93 }
93} 94}
diff --git a/src/viewdefault.h b/src/viewdefault.h
index 263b9d7..2c3db0e 100644
--- a/src/viewdefault.h
+++ b/src/viewdefault.h
@@ -42,6 +42,7 @@ private:
42 int iTotal; 42 int iTotal;
43 int iCurrent; 43 int iCurrent;
44 Bu::FString sCurProfile; 44 Bu::FString sCurProfile;
45 Bu::FString sTopTarget;
45}; 46};
46 47
47#endif 48#endif