Quantcast

Renamed ShowReportWindow -> ShowReportFrame.

Peter Eliasson [02-08-15 - 13:30]
Renamed ShowReportWindow -> ShowReportFrame.
Filename
src/gui.lua
src/report.lua
diff --git a/src/gui.lua b/src/gui.lua
index 28cdc3f..4a77771 100644
--- a/src/gui.lua
+++ b/src/gui.lua
@@ -174,7 +174,7 @@ function gui:CreateActionContainer()
 	reportBtn:SetDisabled(true);
 	reportBtn:SetRelativeWidth(0.5);
 	reportBtn:SetCallback("OnClick", function()
-		addon.report:ShowReportWindow(
+		addon.report:ShowReportFrame(
 			self.selectedGuild,
 			self.selectedZone,
 			self.selectedDifficulty,
diff --git a/src/report.lua b/src/report.lua
index 13707f7..a3fe55f 100644
--- a/src/report.lua
+++ b/src/report.lua
@@ -99,7 +99,7 @@ function report:SendData(channelId, whisperToName, dataTitle, filterString, pars
 end


-function report:ShowReportWindow(guildId, zoneId, difficultyId, encounterId, roleId, parses, filters)
+function report:ShowReportFrame(guildId, zoneId, difficultyId, encounterId, roleId, parses, filters)
 	if self.currentFrame then
 		self.currentFrame:Release();
 		self.currentFrame = nil;